Skip to content

Commit

Permalink
Update Z3 path in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-larraz committed Nov 10, 2023
1 parent bca6cf4 commit 99f890c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/kind2-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
Z3_VERSION=4.12.2
Z3_OS_VERSION=x64-glibc-2.31
Z3_ZIP_NAME=z3-$Z3_VERSION-$Z3_OS_VERSION
wget https://github.com/Z3Prover/z3/releases/download/z3-$Z3_VERSION/$Z3_ZIP_NAME.zip
unzip $Z3_ZIP_NAME.zip
cp $Z3_ZIP_NAME/bin/z3 ./bin/
wget -q https://github.com/Z3Prover/z3/releases/download/z3-$Z3_VERSION/$Z3_ZIP_NAME.zip
unzip -q $Z3_ZIP_NAME.zip
sudo cp $Z3_ZIP_NAME/bin/z3 /usr/bin/
- name: Install Z3 (macOS)
if: runner.os == 'macOS'
Expand Down

0 comments on commit 99f890c

Please sign in to comment.