Skip to content

Commit

Permalink
fix(ci): install veripb for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
chrjabs committed Jan 21, 2025
1 parent bec6e4a commit b9676b2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pigeons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,17 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
shared-key: "build-test"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install VeriPB
run: pip https://gitlab.com/MIAOresearch/software/VeriPB/-/archive/version2/VeriPB-version2.zip
- name: Cargo build
run: cargo build -p pigeons --verbose
env:
CMAKE_BUILD_PARALLEL_LEVEL: ${{ fromJSON('["", "4"]')[matrix.os == 'macos-latest'] }}
- name: Cargo test
run: cargo test -p pigeons --verbose
run: cargo nextest run --profile ci -p pigeons --verbose
env:
CMAKE_BUILD_PARALLEL_LEVEL: ${{ fromJSON('["", "4"]')[matrix.os == 'macos-latest'] }}
6 changes: 6 additions & 0 deletions .github/workflows/rustsat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
key: ${{ matrix.rust-version }}
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install VeriPB
run: pip https://gitlab.com/MIAOresearch/software/VeriPB/-/archive/version2/VeriPB-version2.zip
- name: Cargo build
run: cargo build -p rustsat --verbose --features=all
env:
Expand Down

0 comments on commit b9676b2

Please sign in to comment.