Skip to content

Commit

Permalink
Update workflow.yml
Browse files Browse the repository at this point in the history
Run`cmake` Without Preset: Use `cmake -S . -B build` instead of `cmake --preset=build` to ensure paths are correctly set.

Signed-off-by: ZzzzzH <[email protected]>
  • Loading branch information
ZzzhHe authored Jul 12, 2024
1 parent 8614341 commit cff5070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Build
run: |
cmake --preset=build
cmake -S . -B build
cmake --build build --target all
cmake --build build --target coverage
Expand Down

0 comments on commit cff5070

Please sign in to comment.