From 43f1e4ac42b389bfa2cbb754c371394cbf1b95b9 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Mon, 18 Mar 2024 15:07:41 +1000 Subject: [PATCH 1/2] fix up CI builds --- .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 ef99be45..6e5d7f42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab - name: Install Rust Toolchain - run: rustup update ${{ matrix.channel }}-${{ matrix.rust_target }} && rustup default ${{ matrix.channel }}-${{ matrix.rust_target }} + run: rustup update ${{ matrix.channel }}-${{ matrix.rust_target }}; rustup default ${{ matrix.channel }}-${{ matrix.rust_target }} - name: Install cargo-hack run: cargo install cargo-hack From 23b870320900370f9e0cde13af86db184cd97d8e Mon Sep 17 00:00:00 2001 From: KodrAus Date: Mon, 18 Mar 2024 15:11:03 +1000 Subject: [PATCH 2/2] no need to update first --- .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 6e5d7f42..d4b4104d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab - name: Install Rust Toolchain - run: rustup update ${{ matrix.channel }}-${{ matrix.rust_target }}; rustup default ${{ matrix.channel }}-${{ matrix.rust_target }} + run: rustup default ${{ matrix.channel }}-${{ matrix.rust_target }} - name: Install cargo-hack run: cargo install cargo-hack