From 4239f261aebb2e692c96e55a941ec162ff416b39 Mon Sep 17 00:00:00 2001 From: Boxy Date: Wed, 26 Oct 2022 22:06:57 +0100 Subject: [PATCH] CI pls --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41184438f9616d..95896a59dfa634 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }} - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: beta override: true - name: Install alsa and udev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev @@ -57,7 +57,7 @@ jobs: key: ${{ runner.os }}-cargo-ci-${{ hashFiles('**/Cargo.toml') }} - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: beta components: rustfmt, clippy override: true - name: Install alsa and udev @@ -117,7 +117,7 @@ jobs: key: ${{ runner.os }}-cargo-check-compiles-${{ hashFiles('**/Cargo.toml') }} - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: beta override: true - name: Install alsa and udev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev @@ -141,7 +141,7 @@ jobs: key: ubuntu-assets-cargo-build-wasm-stable-${{ hashFiles('**/Cargo.toml') }} - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: beta target: wasm32-unknown-unknown override: true - name: Check wasm @@ -196,7 +196,7 @@ jobs: key: ${{ runner.os }}-cargo-run-examples-${{ hashFiles('**/Cargo.toml') }} - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: beta - name: Build bevy # this uses the same command as when running the example to ensure build is reused run: | @@ -231,7 +231,7 @@ jobs: key: ${{ runner.os }}-check-doc-${{ hashFiles('**/Cargo.toml') }} - uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: beta - name: Install alsa and udev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev if: runner.os == 'linux'