Skip to content

Commit

Permalink
Update GitHub runners
Browse files Browse the repository at this point in the history
 * Remove macOS 11
 * Add macOS 13
 * Don't need to upgrade unused brew packages that GitHub ships
 * Upgrade GitHub actions to Node 20 versions
  • Loading branch information
gfiumara committed Mar 8, 2024
1 parent e94f587 commit 0a0db61
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
fail-fast: false
matrix:
config:
- { os: macOS-13, arch: x64, shared: ON, force-static-deps: OFF }
- { os: macOS-12, arch: x64, shared: ON, force-static-deps: OFF }
- { os: macOS-11, arch: x64, shared: ON, force-static-deps: OFF }
- { os: ubuntu-22.04, arch: x64, shared: ON, force-static-deps: OFF }
- { os: ubuntu-22.04, arch: x64, shared: OFF, force-static-deps: OFF }
- { os: ubuntu-20.04, arch: x64, shared: ON, force-static-deps: OFF }
Expand All @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: false

Expand All @@ -62,7 +62,7 @@ jobs:
- name: Package Cache (Windows)
if: ${{ runner.os == 'Windows' }}
id: vcpkg-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}
key: ${{ matrix.config.os }}-${{ matrix.config.arch }}-SHARED_${{ matrix.config.shared }}-STATIC_${{ matrix.config.force-static-deps }}-vcpkg
Expand Down Expand Up @@ -95,7 +95,8 @@ jobs:
# FIXME: homebrew's open-mpi package doesn't include C++ bindings
# FIXME: we're not compatible with latest ffmpeg
run: |
brew install \
HOMEBREW_NO_INSTALL_CLEANUP=1 HOMEBREW_NO_AUTO_UPDATE=1 \
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install \
berkeley-db \
hwloc \
jpeg-turbo \
Expand Down

0 comments on commit 0a0db61

Please sign in to comment.