Skip to content

Commit

Permalink
Update cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed Sep 11, 2024
1 parent 2cf9052 commit 413c042
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: CMake Configure
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DSERIAL=1
- name: Compile
run: cmake -DCMAKE_BUILD_TYPE=Debug -DSERIAL=1 . && make
run: cmake --build build
- name: Test
run: make test
run: ctest --test-dir build

gnu-cmake-release:
name: gnu-cmake-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: CMake Configure
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release -DSERIAL=1
- name: Compile
run: cmake -DCMAKE_BUILD_TYPE=Release -DSERIAL=1 . && make
run: cmake --build build
- name: Test
run: make test
run: ctest --test-dir build

gnu-fpm-debug:
name: gnu-fpm-debug
Expand Down

0 comments on commit 413c042

Please sign in to comment.