From 566d1df20e440707bd3ba286e147d3d7c014d643 Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Thu, 4 Aug 2022 11:37:02 -0700 Subject: [PATCH] Add MacOS 12 CI runner This expands test environment coverage to two MacOS versions. Signed-off-by: Sean Robinson --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb4d38f..bdc224f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: toolchain: - macos-latest-clang + - macos-12-clang - ubuntu-latest-clang - ubuntu-latest-gcc - windows-2019-msvc @@ -27,6 +28,11 @@ jobs: c_compiler: clang cxx_compiler: clang++ + - toolchain: macos-12-clang + os: macos-latest + c_compiler: clang + cxx_compiler: clang++ + - toolchain: ubuntu-latest-clang os: ubuntu-latest c_compiler: clang