From c46cec313888d6dfbd71e7475ff9ee6a6b6b9b57 Mon Sep 17 00:00:00 2001 From: nirenjan Date: Wed, 5 Jun 2024 09:16:22 -0700 Subject: [PATCH] ci: Disable macos-11 and add newer versions Github has deprecated macos-11 runners and will stop them towards the end of June 2024. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 52eb056..ae3313a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,13 +15,13 @@ jobs: if: "!(contains(github.event.head_commit.message, '[ci skip]') || contains(github.event.head_commit.message, '[skip ci]'))" name: ${{ join(matrix.*, '/') }} runs-on: ${{ matrix.os }} - continue-on-error: ${{ startsWith(matrix.os, 'macos-') || (matrix.os == 'ubuntu-22.04') }} + continue-on-error: ${{ startsWith(matrix.os, 'macos-') || (matrix.os == 'ubuntu-24.04') }} env: CC: ${{ matrix.cc }} strategy: matrix: - os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-11'] + os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-22.04', 'macos-12', 'macos-13', 'macos-14'] cc: ['gcc', 'clang'] steps: