diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e22368e2b6d4..25b6b8766a67f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,18 +76,20 @@ jobs: timeout-minutes: 60 steps: - uses: actions/checkout@v3 - - uses: actions/cache@v3 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-cargo-miri-${{ hashFiles('**/Cargo.toml') }} + # TODO: re-enable cache once nightly is unpinned + # - uses: actions/cache@v3 + # with: + # path: | + # ~/.cargo/bin/ + # ~/.cargo/registry/index/ + # ~/.cargo/registry/cache/ + # ~/.cargo/git/db/ + # target/ + # key: ${{ runner.os }}-cargo-miri-${{ hashFiles('**/Cargo.toml') }} - uses: actions-rs/toolchain@v1 with: - toolchain: nightly + # TODO: check again with nightly once https://github.com/rust-lang/miri/issues/2223 is fixed + toolchain: nightly-2022-06-08 components: miri override: true - name: Install alsa and udev