From 09e4cc5e06a4312e96692fcd8ae5e5be03718bab Mon Sep 17 00:00:00 2001 From: Ramil Bakhshyiev Date: Fri, 3 May 2024 00:25:54 -0700 Subject: [PATCH 1/2] Change linux-arm64-packages build to use 2-core-ubuntu-arm for better availability (#3410) Summary: Migration to GitHub Actions Reviewed By: junjieqi Differential Revision: D56921925 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16ffe51e18..bd9805b9d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,7 +103,7 @@ jobs: label: main linux-arm64-packages: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') - runs-on: 4-core-arm + runs-on: 2-core-ubuntu-arm steps: - name: Checkout uses: actions/checkout@v4.1.1 From 8e5d932a130eb4692a5cd73d3c239ca88e6a3c74 Mon Sep 17 00:00:00 2001 From: Ramil Bakhshyiev Date: Fri, 3 May 2024 00:25:54 -0700 Subject: [PATCH 2/2] Enable osx-arm64-packages build via GitHub Actions (#3411) Summary: Migration to GitHub Differential Revision: D56923116 --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd9805b9d9..e05645f3d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -101,6 +101,18 @@ jobs: - uses: ./.github/actions/build_conda with: label: main + osx-arm64-packages: + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') + runs-on: macos-14 + steps: + - name: Checkout + uses: actions/checkout@v4.1.1 + with: + fetch-depth: 0 + fetch-tags: true + - uses: ./.github/actions/build_conda + with: + label: main linux-arm64-packages: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') runs-on: 2-core-ubuntu-arm