Skip to content

Commit

Permalink
Merge pull request PelicanPlatform#1712 from jhiemstrawisc/issue-1711
Browse files Browse the repository at this point in the history
Update MacOS GHA test env to fix deprecation error
  • Loading branch information
Saartank authored Nov 5, 2024
2 parents 37efea4 + abb34b6 commit 8e17764
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
go-version: [1.21.x]
os: [macos-12, windows-latest]
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
4 changes: 4 additions & 0 deletions github_scripts/osx_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ scriptdir=$PWD/`dirname $0`

brew install minio ninja coreutils

# The new macos-latest runner has some issues with /usr/local/<lib/include>. Adjust perms ahead of time
sudo mkdir -p /usr/local/lib && sudo mkdir -p /usr/local/include
sudo chmod -R 777 /usr/local && sudo chown -R $(whoami):admin /usr/local

mkdir dependencies
pushd dependencies

Expand Down

0 comments on commit 8e17764

Please sign in to comment.