From 1f57413025a7a62a762e36dcc7c21ba46095d6f1 Mon Sep 17 00:00:00 2001 From: Tindy X <49061470+tindy2013@users.noreply.github.com> Date: Fri, 5 Apr 2024 21:48:03 +0800 Subject: [PATCH] Fix Linux self-hosted build --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5924d043..9241ec365 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,13 +18,17 @@ jobs: include: - arch: x86 artifact: subconverter_linux32 + os: ubuntu-latest - arch: amd64 artifact: subconverter_linux64 + os: ubuntu-latest - arch: armv7 artifact: subconverter_armv7 + os: [self-hosted, linux, ARM] - arch: aarch64 artifact: subconverter_aarch64 - runs-on: ubuntu-latest + os: [self-hosted, linux, ARM64] + runs-on: ${{ matrix.os }} name: Linux ${{ matrix.arch }} Build steps: - name: Checkout base