Skip to content

Commit

Permalink
Update macOS version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ktras committed Jun 10, 2024
1 parent d422e5e commit c1b7d25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-11, ubuntu-24.04]
os: [macos-14, ubuntu-24.04]

env:
PREFIX: install
Expand All @@ -30,6 +30,7 @@ jobs:
- name: Install on macOS
if: contains(matrix.os, 'macos')
run: |
export GCC_VERSION=13
./install.sh --prefix=${PREFIX}
- name: Run unit tests
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ yes | ./install.sh
EOF
}

GCC_VERSION=14
GCC_VERSION=${GCC_VERSION:=14}
GASNET_VERSION="stable"

list_prerequisites()
Expand Down

0 comments on commit c1b7d25

Please sign in to comment.