From 0ce7a3b40a6be926d58c03ddcb052a6fc6ff45f4 Mon Sep 17 00:00:00 2001 From: Peter Squicciarini Date: Sun, 20 Sep 2020 15:05:55 -0700 Subject: [PATCH] (experiment) allow linux arm build to fail --- .github/workflows/linux.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 220fc82..5caeb4d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -8,10 +8,15 @@ on: jobs: linux: runs-on: ubuntu-latest + continue-on-error: ${{ matrix.probably_fails }} strategy: fail-fast: false matrix: arch: [x64, arm64, arm] + include: + - arch: arm + probably_fails: true + env: OS_NAME: 'linux' BUILDARCH: ${{ matrix.arch }}