From 9ed7dc69706c590f95c4c59bbe2feb4f98a013f8 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Tue, 31 May 2022 14:40:45 +1000 Subject: [PATCH] Rm step for installing `musl-tool` in job `test` The job `test` for target `x86_64-unknown-linux-musl` requires `musl-tool` since there is no pre-built binary present for that target and thus `cargo-binstall` automatically fall back to `cargo-build`. Currently, the test for it also failed because `libssl-1.1` is not present. However, since this will be fixed once a new release of `cargo-binstall` is published, this step should not be present. Signed-off-by: Jiahao XU --- .github/workflows/rust.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cccb90c5..2cbb0324 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -160,10 +160,6 @@ jobs: target: ${{ matrix.target }} override: true - - name: Install musl-tools - if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }} - run: sudo apt-get install -y musl-tools - - uses: actions/download-artifact@v2 with: name: cargo-binstall-${{ matrix.target }}.${{ matrix.archive }}