From 450facd260c2441ce272aabd94350b35063f0718 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Sat, 23 Jul 2022 21:31:19 +1000 Subject: [PATCH] Install deps only on x86_64 linux gnu Signed-off-by: Jiahao XU --- .github/workflows/build-and-integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-integration-tests.yml b/.github/workflows/build-and-integration-tests.yml index ffa44bad..d084adbf 100644 --- a/.github/workflows/build-and-integration-tests.yml +++ b/.github/workflows/build-and-integration-tests.yml @@ -84,7 +84,7 @@ jobs: run: sudo apt-get install -y musl-tools - name: Install deps - if: ${{ startsWith(matrix.target, 'x86_64-unknown-linux-') && !startsWith(github.ref, 'refs/tags/v') }} + if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' && !startsWith(github.ref, 'refs/tags/v') }} run: sudo ./ci-scripts/install-deps.sh - name: Build release