Skip to content

Commit

Permalink
Fix install prefix on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Dec 1, 2024
1 parent 6e2b30a commit 1060c16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,15 @@ jobs:

- name: Build
working-directory: asio
run: cmake --build build --config Release -j 4
run: cmake --build build --config Debug -j 4

- name: Install
working-directory: asio
run: cmake --install build --config Release --prefix prefix
run: cmake --install build --config Debug # see CMakePresets.json! --prefix stagedir

- name: Test
working-directory: asio/build
run: ctest --output-on-failure --no-tests=error -C Release -j 4
run: ctest --output-on-failure --no-tests=error -C Debug -j 4

docs:
# Deploy docs only when builds succeed
Expand Down

0 comments on commit 1060c16

Please sign in to comment.