Skip to content

Commit

Permalink
ci: enhance CI workflow with separate configure, build, test, and ins…
Browse files Browse the repository at this point in the history
…tall steps
  • Loading branch information
pageldev committed Jan 19, 2025
1 parent def5ff6 commit 0097dca
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ jobs:
ninja-build
- name: checkout repository
uses: actions/checkout@v4
- name: compile
- name: configure
run: |
cmake -B build -S .
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Release
- name: build
run: |
cmake --build build
- name: test
run: |
cd build
ctest --output-on-failure
- name: install
run: |
sudo cmake --install build

0 comments on commit 0097dca

Please sign in to comment.