From 582258a1b5f472a68e625e338cb2ba23784f53f8 Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Sat, 24 Feb 2024 13:57:32 +0000 Subject: [PATCH] Use release version of ponyc on MacOS for Apple Silicon We were using nightlies as there was no recent ponyc release for arm64 MacOS until 0.58.2 was released today. --- .github/workflows/pr.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 44639e7..e886743 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -138,7 +138,7 @@ jobs: steps: - uses: actions/checkout@v4.1.1 - name: install pony tools - run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly + run: bash .ci-scripts/macos-arm64-install-pony-tools.bash release - name: Test with the most recent ponyc release run: | export PATH="/tmp/corral/bin:/tmp/ponyc/bin/:$PATH" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aebfdef..f99d205 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,7 @@ jobs: steps: - uses: actions/checkout@v4.1.1 - name: install pony tools - run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly + run: bash .ci-scripts/macos-arm64-install-pony-tools.bash release - name: brew install dependencies run: brew install coreutils - name: pip install dependencies