From 3b2037613f315f27ba96a98ab81c9160a8bb8ed8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sat, 11 Jun 2022 08:48:45 +0200 Subject: [PATCH 1/3] fix nightly for miri --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e22368e2b6d4..a9a2474013d30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,8 @@ jobs: 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 From d910712dd5e9021f1396a220f8f5bebb2d710946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sat, 11 Jun 2022 09:57:05 +0200 Subject: [PATCH 2/3] disable cache --- .github/workflows/ci.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9a2474013d30..dce9a59064b47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,15 +76,16 @@ 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 unpined + # - 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: # TODO: check again with nightly once https://github.com/rust-lang/miri/issues/2223 is fixed From 1d0dc8366905a86f2b58eadd50a0a7cdc343bfee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sat, 11 Jun 2022 09:58:01 +0200 Subject: [PATCH 3/3] typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dce9a59064b47..25b6b8766a67f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: timeout-minutes: 60 steps: - uses: actions/checkout@v3 - # TODO: re-enable cache once nightly is unpined + # TODO: re-enable cache once nightly is unpinned # - uses: actions/cache@v3 # with: # path: |