Skip to content

Commit

Permalink
Add cmake version check to the workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Mar 15, 2024
1 parent abad742 commit 9a236f8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,13 @@ jobs:
with:
submodules: recursive
- name: Setup Ubuntu
run: ./scripts/setup-ubuntu.sh
- run: mkdir build
run: |
./scripts/setup-ubuntu.sh
mkdir build
- name: Run cmake
run: cmake -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TZ_LIB=ON
run: |
cmake --version
cmake -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TZ_LIB=ON
- name: Build
run: ninja -C build
- name: Test
Expand Down

0 comments on commit 9a236f8

Please sign in to comment.