diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a46e256..a1ef1f3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,7 +82,9 @@ jobs: - name: Install Dependencies run: sudo apt-get install -y build-essential cmake - name: Build - run: ./build-aux/ci_build.sh -b cmake + run: ./build-aux/ci_build.sh -b cmake -p build + - name: Test + run: ./build-aux/ci_build.sh -b cmake -p test MacOS-Autotools: runs-on: macos-latest @@ -139,5 +141,7 @@ jobs: - name: Install Dependencies run: brew install cmake - name: Build - run: ./build-aux/ci_build.sh -b cmake + run: ./build-aux/ci_build.sh -b cmake -p build + - name: Test + run: ./build-aux/ci_build.sh -b cmake -p test
\ No newline at end of file |