From 7037ad1a27b34600f72537b45fd621a1202b2231 Mon Sep 17 00:00:00 2001 From: KagChi <59391215+KagChi@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:31:18 +0000 Subject: [PATCH] chore: exclude target --- .github/workflows/compile.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index dabf474..fe80c60 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -12,10 +12,10 @@ jobs: - target: x86_64-unknown-linux-gnu - target: i686-unknown-linux-gnu deps: apt-get install -y gcc-multilib - - target: aarch64-unknown-linux-gnu - deps: apt-get install -y gcc-aarch64-linux-gnu - - target: armv7-unknown-linux-gnueabihf - deps: apt-get install -y gcc-arm-linux-gnueabihf + # - target: aarch64-unknown-linux-gnu + # deps: apt-get install -y gcc-aarch64-linux-gnu + # - target: armv7-unknown-linux-gnueabihf + # deps: apt-get install -y gcc-arm-linux-gnueabihf name: Compile ${{ matrix.target }} target runs-on: ubuntu-22.04