From 06fee03300aff68cc6c9085b52490addf84a2add Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Tue, 19 Nov 2024 21:10:13 -0800 Subject: [PATCH] for now --- .github/workflows/build-arm64.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-arm64.yml b/.github/workflows/build-arm64.yml index 3799821..c33678e 100644 --- a/.github/workflows/build-arm64.yml +++ b/.github/workflows/build-arm64.yml @@ -8,10 +8,10 @@ jobs: build: strategy: matrix: - variant: ['mt8192', 'mt8183', 'sc7180', 'rpi'] - runs-on: arm64 + variant: ["mt8192", "mt8183", "sc7180", "rpi"] + runs-on: x86-64-lg container: - image: registry.fedoraproject.org/fedora-minimal:40 + image: registry.fedoraproject.org/fedora-minimal:40 steps: - name: Install Toolchain run: | @@ -21,18 +21,18 @@ jobs: - name: Checkout uses: actions/checkout@v3 with: - fetch-depth: 1 - submodules: 'recursive' + fetch-depth: 1 + submodules: "recursive" - name: Set git user run: | git config --global user.name "FyraLabs CI" git config --global user.email "ci@fyralabs.com" - - name: Setup each variant + - name: Setup each variant run: make -C ${{ matrix.variant }} setup - name: Setup enviroment variables run: | - echo "CCACHE_DIR=$(pwd)/ccache" >> $GITHUB_ENV - echo "KERNEL_COMMIT=$(cd linux && git rev-parse HEAD)" >> $GITHUB_ENV + echo "CCACHE_DIR=$(pwd)/ccache" >> $GITHUB_ENV + echo "KERNEL_COMMIT=$(cd linux && git rev-parse HEAD)" >> $GITHUB_ENV - name: Setup ccache cache uses: actions/cache@v3 with: