You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2022/11/01 19:12:35 UTC

[arrow-ballista] branch master updated: Stop wasting time in CI on MIRI runs (#491)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/master by this push:
     new 64d4e9ad Stop wasting time in CI on MIRI runs (#491)
64d4e9ad is described below

commit 64d4e9ad08d416b319e503dad3008b3ad758f808
Author: Yang Jiang <ya...@ebay.com>
AuthorDate: Wed Nov 2 03:12:29 2022 +0800

    Stop wasting time in CI on MIRI runs (#491)
---
 .github/workflows/rust.yml | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index b5550407..bb3f949f 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -300,40 +300,6 @@ jobs:
           CARGO_HOME: "/github/home/.cargo"
           CARGO_TARGET_DIR: "/github/home/target"
 
-  miri-checks:
-    name: MIRI
-    runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        arch: [amd64]
-        rust: [nightly-2022-01-17]
-    steps:
-      - uses: actions/checkout@v3
-        with:
-          submodules: true
-      - uses: actions/cache@v2
-        with:
-          path: |
-            ~/.cargo/registry
-            ~/.cargo/git
-            target
-          key: ${{ runner.os }}-cargo-miri-${{ hashFiles('**/Cargo.lock') }}
-      - name: Setup Rust toolchain
-        run: |
-          rustup toolchain install ${{ matrix.rust }}
-          rustup default ${{ matrix.rust }}
-          rustup component add rustfmt clippy miri
-      - name: Run Miri Checks
-        env:
-          RUST_BACKTRACE: full
-          RUST_LOG: "trace"
-          MIRIFLAGS: "-Zmiri-disable-isolation"
-        run: |
-          cargo miri setup
-          cargo clean
-          # Ignore MIRI errors until we can get a clean run
-          cargo miri test || true
-
   cargo-toml-formatting-checks:
     name: Check Cargo.toml formatting
     needs: [linux-build-lib]