Skip to content

Commit

Permalink
Use cmake for cleaning in cmake job
Browse files Browse the repository at this point in the history
which makes more sense than building with cmake
and cleaning with make.
  • Loading branch information
peterschrammel committed Nov 12, 2024
1 parent a1ff4b7 commit 9e595aa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -263,11 +263,9 @@ jobs:
run: cd build; ctest . -V -L CORE -j${{env.linux-vcpus}}
- name: Check cleanup
run: |
cmake --build build --target clean
rm -r build
rm scripts/bash-autocomplete/cbmc.sh
make -C unit clean
make -C regression clean
make -C jbmc/regression clean
if [[ $(git status --ignored --porcelain | grep -v .ccache/) ]] ; then
git status --ignored
exit 1
Expand Down

0 comments on commit 9e595aa

Please sign in to comment.