Skip to content

Commit

Permalink
GH workflows: fix cmake call in cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fkutzner committed Aug 22, 2023
1 parent 2e42146 commit c1e23b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ jobs:
- uses: actions/checkout@v2

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGATEKIT_TEST_ENABLE_SANITIZERS=ON
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGATEKIT_TEST_ENABLE_SANITIZERS=ON -DGATEKIT_ENABLE_TESTS=ON

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Test
working-directory: ${{github.workspace}}/build
run: bin/gatekit-tests

0 comments on commit c1e23b3

Please sign in to comment.