Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build CBMC with cmake in all "CBMC latest" jobs #2965

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cbmc-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
- name: Build CBMC
working-directory: ./cbmc
run: |
make -C src minisat2-download cadical-download
make -C src -j4 MINISAT2=../../minisat-2.2.1 CADICAL=../../cadical
cmake -S . -Bbuild -DWITH_JBMC=OFF
adpaco-aws marked this conversation as resolved.
Show resolved Hide resolved
cmake --build build -- -j 4
# Prepend the bin directory to $PATH
echo "${GITHUB_WORKSPACE}/cbmc/build/bin" >> $GITHUB_PATH

Expand Down