Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

CI: move to newer and explicit OSes #42

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
check-generate:
runs-on: macOS-latest
runs-on: macOS-14
outputs:
matrix: ${{ steps.generate-matrix.outputs.matrix }}
steps:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
id: generate-matrix
run: |
JSON="{\"include\":["
for os in macos-latest ubuntu-latest; do
for os in macos-14 ubuntu-24.04; do
for formula in $( echo ${{ steps.formulae-detect.outputs.testing_formulae }} | tr ',' ' ' ); do
JSON="$JSON$( jq -nRr '( $ARGS.positional[] | { os: $os, formulae: . }) | tojson' --arg os "$os" --args "$formula" ),"
done
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
test-bot:
name: Check syntax
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-12, macOS-13, macOS-14]
os: [ubuntu-24.04, macOS-13, macOS-14, macOS-15]
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-12, macOS-13, macOS-14]
os: [ubuntu-24.04, macOS-13, macOS-14, macOS-15]
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -66,7 +66,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-12, macOS-13, macOS-14]
os: [ubuntu-24.04, macOS-13, macOS-14, macOS-15]
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -85,7 +85,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-12, macOS-13, macOS-14]
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -104,7 +104,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-12, macOS-13, macOS-14]
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -123,7 +123,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-12, macOS-13, macOS-14]
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand All @@ -142,7 +142,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-12, macOS-13, macOS-14]
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
Expand Down