Skip to content

Commit

Permalink
CI: Test the arbitrary-size-numeral feature in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Jun 29, 2020
1 parent caac39c commit c0c4199
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
run: cargo test -vv --all
# See above.
continue-on-error: true
- name: Run tests with `arbitrary-size-numeral` enabled
run: cargo test --manifest-path z3/Cargo.toml -vv --features arbitrary-size-numeral
# See above.
continue-on-error: true

build_z3_statically:
strategy:
Expand All @@ -45,5 +49,7 @@ jobs:
run: cargo build --manifest-path z3-sys/Cargo.toml -vv --features static-link-z3
- name: Build z3 with statically linked Z3
run: cargo build --manifest-path z3/Cargo.toml -vv --features static-link-z3
- name: Test z3 with statically linked z3
- name: Test `z3` with statically linked Z3
run: cargo test --manifest-path z3/Cargo.toml -vv --features static-link-z3
- name: Test `z3` with statically linked Z3 and `arbitrary-size-numeral` enabled
run: cargo test --manifest-path z3/Cargo.toml -vv --features 'static-link-z3 arbitrary-size-numeral'

0 comments on commit c0c4199

Please sign in to comment.