From 62112a3602abf948a76c16145d908e27359d81a4 Mon Sep 17 00:00:00 2001 From: Andrey Saranchin Date: Mon, 14 Oct 2024 23:08:52 +0300 Subject: [PATCH] ci: replace macos-11 workflows with newer ones GitHub Actions does not support `macos-11` anymore - let's replace it with the newer versions. --- .github/workflows/testing.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index bba153280..1c902b974 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -16,8 +16,9 @@ jobs: runs-on: - ubuntu-20.04 - ubuntu-22.04 - - macos-11 - macos-12 + - macos-13 + - macos-14 build-type: - Debug - RelWithDebInfo @@ -36,8 +37,9 @@ jobs: runs-on: - ubuntu-20.04 - ubuntu-22.04 - - macos-11 - macos-12 + - macos-13 + - macos-14 compiler: - {c: gcc, cxx: g++} - {c: clang, cxx: clang++} @@ -52,10 +54,12 @@ jobs: - cxx-standard: 17 compiler: {c: gcc, cxx: g++} # gcc on macos is just an alias for clang - - runs-on: macos-11 - compiler: {c: gcc, cxx: g++} - runs-on: macos-12 compiler: {c: gcc, cxx: g++} + - runs-on: macos-13 + compiler: {c: gcc, cxx: g++} + - runs-on: macos-14 + compiler: {c: gcc, cxx: g++} name: build (${{ matrix.runs-on }}, ${{ matrix.build-type }}, ${{ matrix.compiler.c }}, C++${{ matrix.cxx-standard }}) with: build-only: true