Skip to content

Commit

Permalink
Use release ponyc version for Apple Silicon MacOS releases (#267)
Browse files Browse the repository at this point in the history
We were using nightlies as we had no recent ponyc releases until
0.58.2 went out today.
  • Loading branch information
SeanTAllen authored Feb 24, 2024
1 parent b38d9e4 commit 6bc88f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci-scripts/macos-arm64-install-pony-tools.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

case "${1}" in
"release")
REPO=release
REPO=releases
;;
"nightly")
REPO=nightlies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
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: Test with most recent ponyc release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
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
Expand Down

0 comments on commit 6bc88f1

Please sign in to comment.