We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e866d2 commit a77dce1Copy full SHA for a77dce1
.github/workflows/ci.yml
@@ -106,6 +106,12 @@ jobs:
106
- name: cargo test --release --workspace
107
run: |
108
export RUSTFLAGS="-D warnings"
109
+ # add homebrew library path for z3; z3-sys 0.9.4 supports the
110
+ # Z3_LIBRARY_PATH_OVERRIDE environment variable that would let
111
+ # us override the library path, but that crate version is too new
112
+ # for nightly-2022-08-08 (requires 2024 edition). On our nightly rustc
113
+ # on Mac OS, we have to pass in the exact library path directly to RUSTFLAGS.
114
+ export RUSTFLAGS="$RUSTFLAGS -Clink-arg=-L/opt/homebrew/lib -Clink-arg=-Wl,-rpath,/opt/homebrew/lib"
115
export RUSTDOCFLAGS="-D warnings"
116
cargo test --release --workspace
117
- name: Test translator
0 commit comments