From 5a077b917f68a851dbfa236c2f5ce75e3e40cac6 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 25 Aug 2024 10:29:28 -0500 Subject: [PATCH] Let the actions-rust-cross action install musl --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d636312..616f139 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,11 +128,8 @@ jobs: run: | git config --global user.email "jdoe@example.com" git config --global user.name "J. Doe" - - name: Install musl-tools on Linux - run: sudo apt-get update --yes && sudo apt-get install --yes musl-tools - if: contains(matrix.platform.name, 'musl') - name: Build binary - uses: houseabsolute/actions-rust-cross@v0 + uses: houseabsolute/actions-rust-cross@musl with: command: "build" target: ${{ matrix.platform.target }}