From 9b579c088f65cb00d5c7cf75e366e80d2df53770 Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 4 Jun 2024 15:08:56 -0700 Subject: [PATCH] ci: disable setup-cross-toolchain for ubuntu --- .github/workflows/cd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 747f6134..6fb33286 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -47,7 +47,8 @@ jobs: # target is managed by build-artifacts already # # Windows/macOS just run `rustup add` since the CI runners support cross-compiling - - if: ${{ !startsWith(matrix.target, 'wasm32') }} + # Linux relies on `cross` + - if: ${{ !startsWith(matrix.os, 'ubuntu') }} uses: taiki-e/setup-cross-toolchain-action@v1 with: target: ${{ matrix.target }}