Skip to content

Commit

Permalink
tweak CI config to explicitly list CMake options
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffamstutz committed Jun 1, 2022
1 parent e1e11d0 commit f101e33
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/anari_sdk_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ jobs:
- uses: actions/checkout@v3

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.config }}
run: >
cmake -B ${{github.workspace}}/build
-DCMAKE_BUILD_TYPE=${{ matrix.config }}
-DBUILD_SHARED_LIBS=ON
-DBUILD_EXAMPLES=ON
-DBUILD_TESTING=ON
-DBUILD_VIEWER=OFF
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.config }}
Expand Down

0 comments on commit f101e33

Please sign in to comment.