Skip to content

Commit

Permalink
chore: test arm-brew-setup/install on macos-13 (not macos-12)
Browse files Browse the repository at this point in the history
Due to macos-12 deprecation
  • Loading branch information
maxirmx committed Oct 30, 2024
1 parent be2f2b0 commit 2c1a147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
test-cross-brew-install:
name: test arm-brew-setup/install
runs-on: macos-12
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion ci-scripts/arm-brew-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ DIR1="$DIR0/arm-homebrew"
for bottle in "${@:2}"
do
echo "Installing $bottle"
response=$("$DIR1/bin/brew" fetch --force --bottle-tag=arm64_big_sur "$bottle" | grep "Downloaded to")
response=$("$DIR1/bin/brew" fetch --force --bottle-tag=arm64_ventura "$bottle" | grep "bottle.tar.gz")
IFS=" " read -r -a parsed <<< "$response"
"$DIR1/bin/brew" install "${parsed[2]}"
done

0 comments on commit 2c1a147

Please sign in to comment.