Skip to content

Commit

Permalink
ci: install btor sim
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Dec 2, 2024
1 parent fb790c3 commit c5a400c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
bmc:
name: Test BMC Example
runs-on: ubuntu-24.04
timeout-minutes: 5
timeout-minutes: 15
strategy:
matrix:
toolchain:
Expand Down Expand Up @@ -61,6 +61,16 @@ jobs:
cd build
ninja
sudo ninja install
- name: Install btor sim
run: |
mkdir /tmp/btor
cd /tmp/btor
git clone https://github.com/hwmcc/btor2tools.git
cd btor2tools
./configure.sh
cd build
make
echo "/tmp/btor/btor2tools/build/bin/" >> "$GITHUB_PATH"
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
Expand Down

0 comments on commit c5a400c

Please sign in to comment.