From 1a7d31d11ad01ffaa5fe89d0df25a22cb3144496 Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Sun, 23 May 2021 02:16:15 +0100 Subject: [PATCH] add rust-toolchain.toml --- .github/workflows/rust.yml | 7 ------- agb/rust-toolchain.toml | 3 +++ 2 files changed, 3 insertions(+), 7 deletions(-) create mode 100644 agb/rust-toolchain.toml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index aef45787..1c645e2b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,13 +22,6 @@ jobs: sudo apt-get install libzip5 ./mGBA-0.9.0-ubuntu64-focal/libmgba.deb -y && \ rm -rf mgba.tar.xz mGBA-0.9.0-ubuntu64-focal - uses: actions/checkout@v2 - - name: Nightly rust with required components - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly-2021-04-20 - components: clippy, rust-src - override: true - - name: Cache uses: actions/cache@v2.1.1 with: diff --git a/agb/rust-toolchain.toml b/agb/rust-toolchain.toml new file mode 100644 index 00000000..87b54024 --- /dev/null +++ b/agb/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "nightly" +components = ["rust-src"] \ No newline at end of file