diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3eeb00..95249c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,6 @@ jobs: os: [windows-latest, ubuntu-latest] rust_version: [stable] build_flags: ["", "--features double-precision", "--features object-layer-u32", "--all-features"] - exclude: - - os: ubuntu-latest runs-on: ${{ matrix.os }} name: Tests - ${{ matrix.os }} ${{ matrix.rust_version }} ${{ matrix.build_flags }} diff --git a/crates/joltc-sys/build.rs b/crates/joltc-sys/build.rs index 54b4ad3..f04d80d 100644 --- a/crates/joltc-sys/build.rs +++ b/crates/joltc-sys/build.rs @@ -52,6 +52,8 @@ fn build_joltc() { let mut dst = config.build(); + println!("cargo:rustc-link-search=native={}", dst.display()); + // Jolt and JoltC put libraries in the 'lib' subfolder. This goes against // the docs of the cmake crate, but it's possible that it's just mishandling // an output path and not account for the install target's configurability.