From 2942390484be516a7efad7630c36e1123f1044af Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 26 Feb 2025 12:18:30 -0700 Subject: [PATCH] fix: run arm64 on master --- .github/workflows/ci3.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci3.yml b/.github/workflows/ci3.yml index 35538b629ad1..cdb925c71641 100644 --- a/.github/workflows/ci3.yml +++ b/.github/workflows/ci3.yml @@ -27,10 +27,11 @@ jobs: strategy: fail-fast: false matrix: - # Only run arm64 build with arm64-ci label. + # Only run arm64 build with arm64-ci label or on master. # The way to do conditions here is to parse full strings as JSON. settings: >- - ${{ fromJson(contains(github.event.pull_request.labels.*.name, 'arm64-ci') && + ${{ fromJson( + (contains(github.event.pull_request.labels.*.name, 'arm64-ci') || github.ref_name == 'master') && '[{"arch":"amd64"},{"arch":"arm64"}]' || '[{"arch":"amd64"}]') }} steps: