Skip to content

Commit

Permalink
GitHub CI: Update the OS matrix and rename YAML file
Browse files Browse the repository at this point in the history
Add ubuntu-24.04, remove macos-11, and add macos-14.
The Action versions (e.g. checkout@v4) are up to date.
Renamed the CI YAML file to indicate that it is the top-level CI file
(matching the naming structure used in the BSC repo).
  • Loading branch information
quark17 committed Sep 17, 2024
1 parent fc26b91 commit 24f5c4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build-ubuntu:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
os: [ ubuntu-20.04, ubuntu-22.04, ubuntu-24.04 ]
fail-fast: false
name: "Build ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
build-macOS:
strategy:
matrix:
os: [ macos-11, macos-12, macos-13 ]
os: [ macos-12, macos-13, macos-14 ]
fail-fast: false
name: "Build ${{ matrix.os }}"
runs-on: ${{ matrix. os }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
test-ubuntu:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
os: [ ubuntu-20.04, ubuntu-22.04, ubuntu-24.04 ]
fail-fast: false
name: "Test ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
test-macOS:
strategy:
matrix:
os: [ macos-11, macos-12, macos-13 ]
os: [ macos-12, macos-13, macos-14 ]
fail-fast: false
name: "Test ${{ matrix.os }}"
runs-on: ${{ matrix. os }}
Expand Down

0 comments on commit 24f5c4e

Please sign in to comment.