This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new ced3b27cd Stop wasting time in CI on MIRI runs (#3610)
ced3b27cd is described below
commit ced3b27cd94d11122e8ca6ff9574be13bfe19e76
Author: Andrew Lamb <[email protected]>
AuthorDate: Mon Sep 26 07:22:47 2022 -0400
Stop wasting time in CI on MIRI runs (#3610)
---
.github/workflows/rust.yml | 30 ------------------------------
1 file changed, 30 deletions(-)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index b9a3311a7..da25cdfc5 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -353,36 +353,6 @@ jobs:
- name: Run clippy
run: ci/scripts/rust_clippy.sh
- miri-checks:
- name: cargo miri test (amd64)
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- with:
- submodules: true
- - uses: actions/cache@v3
- with:
- path: |
- ~/.cargo/registry
- ~/.cargo/git
- target
- key: ${{ runner.os }}-cargo-miri-${{ hashFiles('**/Cargo.lock') }}
- - name: Setup Rust toolchain
- run: |
- rustup toolchain install nightly-2022-01-17
- rustup default nightly-2022-01-17
- 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
-
# Check answers are correct when hash values collide
hash-collisions:
name: cargo test hash collisions (amd64)