Skip to content

Commit b7fd3b7

Browse files
Use cmake for cleaning in cmake job
which makes more sense than building with cmake and cleaning with make.
1 parent e3fdb1e commit b7fd3b7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,9 @@ jobs:
263263
run: cd build; ctest . -V -L CORE -j${{env.linux-vcpus}}
264264
- name: Check cleanup
265265
run: |
266+
cmake --build build --target clean
266267
rm -r build
267268
rm scripts/bash-autocomplete/cbmc.sh
268-
make -C unit clean
269-
make -C regression clean
270-
make -C jbmc/regression clean
271269
if [[ $(git status --ignored --porcelain | grep -v .ccache/) ]] ; then
272270
git status --ignored
273271
exit 1

0 commit comments

Comments
 (0)