Skip to content

Commit

Permalink
Merge pull request #115 from delphinus/fix/ci
Browse files Browse the repository at this point in the history
chore: disable Ventura in CI due to strange errors
  • Loading branch information
delphinus authored Mar 16, 2024
2 parents 4d51967 + bbe426f commit dfd8d09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ jobs:
strategy:
matrix:
os:
- macos-13
# FIX: disable old macOS due to strange errors
#- macos-13
- macos-14
runs-on: ${{ matrix.os }}
timeout-minutes: 15
Expand Down
8 changes: 1 addition & 7 deletions bin/github-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,5 @@ else
perl -i -pe 's,(?<=^ url ").*(?="$),$ENV{URL},' $FORMULA
perl -i -pe 's,(?<=^ sha256 ").*(?="$),$ENV{SHA},' $FORMULA
perl -i -pe 's,(?<=^ version ").*(?="$),$ENV{HASH},' $FORMULA
os_version=$(sw_vers -productVersion | cut -d. -f1)
if [[ $os_version -eq 13 ]]; then
# HACK: ignore strange errors for old macOS
brew install -v --formula $FORMULA || true
else
brew install -v --formula $FORMULA
fi
brew install -v --formula $FORMULA
fi

0 comments on commit dfd8d09

Please sign in to comment.