Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add macOS 15 to end-to-end test GHA workflow #6633

Merged
merged 1 commit into from
Aug 16, 2024
Merged
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/desktop-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
description: "Space-delimited list of targets to run tests on, e.g. `debian11 debian12`. \
Available images are:\n
`debian11 debian12 ubuntu2004 ubuntu2204 ubuntu2404 fedora40 \
fedora39 windows10 windows11 macos12 macos13 macos14`."
fedora39 windows10 windows11 macos12 macos13 macos14 macos15`."
default: ''
required: false
type: string
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Generate matrix for macOS builds
shell: bash
run: |
all='["macos12","macos13","macos14"]'
all='["macos12","macos13","macos14","macos15"]'
oses="${{ github.event.inputs.oses }}"
if [[ -z "$oses" || "$oses" == "null" ]]; then
selected="$all"
Expand Down
Loading