Skip to content

Commit

Permalink
Update CI runners to Ubuntu 24.04 and macOS Sonoma
Browse files Browse the repository at this point in the history
  • Loading branch information
itchyny committed Nov 20, 2024
1 parent 8619f8a commit 7cd7836
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
CC: riscv64-linux-gnu
- arch: s390x
CC: s390x-linux-gnu
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
AR: ${{ matrix.CC }}-ar
CHOST: ${{ matrix.CC }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
target: x86_64-apple-darwin
- arch: arm64
target: arm64-apple-darwin
runs-on: macos-13
runs-on: macos-14
env:
LDFLAGS: -dead_strip
SUFFIX: macos-${{ matrix.arch }}
Expand Down Expand Up @@ -164,8 +164,8 @@ jobs:
file ./jq
cp ./jq jq-${{ env.SUFFIX }}
- name: Test
# Only run tests for amd64 matching the CI machine arch
if: ${{ matrix.arch == 'amd64' }}
# Only run tests for arm64 matching the CI machine arch
if: ${{ matrix.arch == 'arm64' }}
run: |
make check VERBOSE=yes
git diff --exit-code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/decnum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
disabled:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/oniguruma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
# we test other options for --with-oniguruma here.
jobs:
installed:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
tests/*.log
disabled:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 7cd7836

Please sign in to comment.