From b6ee5293f43a6e9ec1c0d977a4037462bd4d02ca Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 11 Mar 2022 21:14:52 -0500 Subject: [PATCH] rust-lang/portable-simd#259: remove Miri from CI --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54d74764790..d50dfa1be4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,23 +58,6 @@ jobs: - name: Run Clippy run: cargo clippy --all-targets --target ${{ matrix.target }} - miri: - name: "miri" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install Miri - run: | - rustup toolchain install nightly --component miri - rustup override set nightly - cargo miri setup - - name: Test with Miri (failures allowed) - continue-on-error: true - run: | - cargo miri test --test i32_ops - cargo miri test --test f32_ops - cargo miri test --test cast - x86-tests: name: "${{ matrix.target_feature }} on ${{ matrix.target }}" runs-on: ${{ matrix.os }}