From e7fa1f806e4d7e048c0475325fd633a156de4e51 Mon Sep 17 00:00:00 2001 From: Jani Monoses Date: Fri, 30 Jan 2026 17:47:41 +0200 Subject: [PATCH] Disable MLIR install and tests in CI --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b56f74d..2300a11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Install MLIR/LLVM + # Disable MLIR installation and tests for now. + if: false run: | sudo apt-get update sudo apt-get install -y wget gnupg @@ -30,8 +32,8 @@ jobs: LIBRARY_PATH: /usr/lib/llvm-21/lib LD_LIBRARY_PATH: /usr/lib/llvm-21/lib run: | - cargo test --features ndarray-backend,candle-backend - RUST_BACKTRACE=full cargo test --examples --features ndarray-backend,candle-backend + cargo test --all-targets --features ndarray-backend,candle-backend --workspace --exclude catgrad-mlir + # RUST_BACKTRACE=full cargo test --examples --features ndarray-backend,candle-backend # Check formatting with rustfmt formatting: name: cargo fmt