Skip to content

Commit

Permalink
SYNTAX DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
tautschnig committed Nov 20, 2023
1 parent 9bd1512 commit 8e86f68
Showing 1 changed file with 6 additions and 38 deletions.
44 changes: 6 additions & 38 deletions .github/workflows/bsd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,47 +13,15 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Prepare ccache
uses: actions/cache@v3
with:
path: .ccache
key: freebsd-13.2-gmake-${{ github.ref }}-${{ github.sha }}-PR
restore-keys: |
freebsd-13.2-gmake-${{ github.ref }}
freebsd-13.2-gmake
- name: ccache environment
run: |
echo "CCACHE_BASEDIR=$PWD" >> $GITHUB_ENV
echo "CCACHE_DIR=$PWD/.ccache" >> $GITHUB_ENV
- name: Build and Test
uses: cross-platform-actions/[email protected]
with:
operating_system: freebsd
version: '13.2'
run: |
echo "Fetch dependencies"
pkg install bash gmake git www/p5-libwww python python3 patch flex bison ccache cvc5 z3
echo "Fetch JBMC dependencies"
pkg install openjdk8 wget maven
echo "Zero ccache stats and limit in size"
ccache -z --max-size=500M
echo "Build with gmake"
gmake -C src minisat2-download
gmake -C src -j $(sysctl -n hw.ncpu)
gmake -C jbmc/src setup-submodules
gmake -C jbmc/src -j $(sysctl -n hw.ncpu)
echo "Print ccache stats"
ccache -s
echo "Checking completeness of help output"
scripts/check_help.sh
echo "Run unit tests"
gmake -C unit test
gmake -C jbmc/unit test
echo "Running expected failure tests"
gmake TAGS="[!shouldfail]" -C unit test
gmake TAGS="[!shouldfail]" -C jbmc/unit test
echo "Run regression tests"
gmake -C regression test
gmake -C regression/cbmc test-paths-lifo
env PATH=$PATH:`pwd`/src/solvers gmake -C regression/cbmc test-cprover-smt2
gmake -C jbmc/regression test
uname -a
echo $SHELL
pwd
ls -lah
whoami
env | sort

0 comments on commit 8e86f68

Please sign in to comment.