From 15e5a842f5ab7af9f8eb76e002d2ca72c575ecb6 Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Fri, 16 Sep 2022 20:14:36 +0100 Subject: [PATCH] Update Mac Version. (#559) * Update Mac Version. * Update Mac Version. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73337c7..512344e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: # Build each combination of OS and release/debug variants - os: [ "ubuntu-latest", "ubuntu-18.04", "macos-11", "macos-10.15", "freebsd-12.2", "freebsd-13.0" ] + os: [ "ubuntu-latest", "ubuntu-18.04", "macos-11", "macos-12", "freebsd-12.2", "freebsd-13.0" ] build-type: [ Release, Debug ] # Extra cmake flags. GitHub Actions matrix overloads `include` to mean # 'add extra things to a job' and 'add jobs'. You can add extra things @@ -40,7 +40,7 @@ jobs: # 2to3 exists. As a quick hack, delete it first. This should be # removed once the homebrew install is fixed. dependencies: "rm -f /usr/local/bin/2to3 ; brew update && brew install ninja" - - os: "macos-10.15" + - os: "macos-12" dependencies: "rm -f /usr/local/bin/2to3 ; brew update && brew install ninja" # Skip the tests for the FreeBSD release builds # Also build-test the checked memcpy implementation while doing these.