From f2e82714c5af9cd3646ab9478289c1037052ba0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Lnz?= Date: Tue, 4 Jun 2024 17:50:36 +0200 Subject: [PATCH] add mac arm build --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05f79ff12b6..f6bfb06339b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: name: Build the thrift compiler strategy: matrix: - os: [ubuntu-20.04, macos-12] + os: [ubuntu-20.04, macos-12, macos-14] runs-on: ${{ matrix.os }} steps: - name: Checkout @@ -53,6 +53,10 @@ jobs: with: name: thrift-macos-12 path: bin/ + - uses: actions/download-artifact@v2 + with: + name: thrift-macos-14 + path: bin/ - name: Get Package Version id: pkg_version run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v}