From 0f2760aa7b81ff305e6deaff429def1f0c61ec5e Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Thu, 8 Sep 2022 15:53:09 +0100 Subject: [PATCH] Remove unnecessary installation of Rust from CI step --- .github/workflows/pipeline.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index b3f8f7bf1..9e18f52f8 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -68,16 +68,7 @@ jobs: uses: actions/checkout@v2 with: path: sytest - - # There should already be a Rust compiler in the docker image, but we - # pick a particular version here. - - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: 1.61.0 - override: true - - uses: Swatinem/rust-cache@v2 - + # TODO the shell script below is nicked from complement. We use this pattern # in a few places. Can we make this an Action so it's easier to reuse? - name: Fetch corresponding synapse branch