From 67e557ed625f097348d498e71b50cb023c74759e Mon Sep 17 00:00:00 2001 From: Miles Granger Date: Thu, 4 Apr 2024 14:27:19 +0200 Subject: [PATCH] fixup --- .github/workflows/CI.yml | 16 ++++------------ blosc2-sys/build.rs | 1 - 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6ba3c6f..ac55a9b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -33,7 +33,7 @@ jobs: if: runner.os == 'macOS' run: | echo "MACOSX_DEPLOYMENT_TARGET=$(sw_vers -productVersion)" >> $GITHUB_ENV - brew install ninja + brew install ninja gcc - name: Install packages (Windows) if: runner.os == 'Windows' @@ -41,17 +41,9 @@ jobs: - name: Install packages (Ubuntu) if: runner.os == 'Linux' - run: sudo apt update - - - uses: rui314/setup-mold@v1 - - # - name: Build - # run: cargo build - # env: - # CC: clang - # CFLAGS: "" - # LDFLAGS: "" - # CI: true + run: | + sudo apt update + sudo apt install build-essential ninja-build -y - name: Test run: cargo test diff --git a/blosc2-sys/build.rs b/blosc2-sys/build.rs index f32f543..5d4f8b7 100644 --- a/blosc2-sys/build.rs +++ b/blosc2-sys/build.rs @@ -24,7 +24,6 @@ fn main() { .arg("-DBUILD_SHARED_LIBS=OFF") .arg("-DBUILD_FUZZERS=OFF") .arg("-DBUILD_BENCHMARKS=OFF") - .arg("-DBUILD_SHARED_LIBS=OFF") .arg("-DBUILD_EXAMPLES=OFF") .arg("-DBUILD_TESTS=OFF") .arg("-DBLOSC_INSTALL=ON")