From 40d1901deca9679e44912237b4a6ab13fce8cbb6 Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Fri, 4 Oct 2024 14:07:51 +1000 Subject: [PATCH] Try macos-15, and gcc-14 on macos runners Because GitHub is about to deprecate macos-12, and macos-15 is about to leave beta. See https://github.com/actions/runner-images/issues/10721 --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 062431854..df49b848c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -153,11 +153,11 @@ jobs: - 6.6.3 - 6.7.3 - 6.8.0 - os: [ 'macos-12', 'macos-13', 'macos-14' ] + os: [ 'macos-13', 'macos-14', 'macos-15' ] env: - { cc: clang, cxx: clang++, coverage: false } - - { cc: gcc-12, cxx: g++-12, coverage: false } - - { cc: gcc-12, cxx: g++-12, coverage: true } + - { cc: gcc-14, cxx: g++-14, coverage: false } + - { cc: gcc-14, cxx: g++-14, coverage: true } exclude: # Exclude Qt 5.x with GCC on macOS 13 (Qt5 only officially supports up to macOS 12). - { qt: '5.9.9', os: 'macos-13', env: { cc: gcc-12 } }