From 4ae66aafb19f6bbf1ece5c010aed2d3826d50c2c Mon Sep 17 00:00:00 2001 From: Frank Dischner Date: Sat, 29 Jan 2022 11:25:32 -0600 Subject: [PATCH] ci: Apple clang 13 support added to "CMake Test Package CI" --- .github/workflows/ci-test-package-cmake.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index 71de1c31..c27a9fb2 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -77,6 +77,11 @@ jobs: compiler: { type: CLANG, version: 13, cc: "clang-13", cxx: "clang++-13" }, lib: "libc++" } + - { + name: "MacOS Apple Clang 13", + os: macos-11, + compiler: { type: APPLE_CLANG, version: 13, cc: "clang", cxx: "clang++" } + } # In case a Conan docker image will be needed to provide a specific configuration we can use a Docker image as follows # - { # name: "Ubuntu GCC 10.2.0", @@ -131,6 +136,9 @@ jobs: sudo apt install -y ninja-build elif [ $RUNNER_OS == 'Windows' ]; then choco install ninja + elif [ $RUNNER_OS == 'macOS' ]; then + brew update + brew install ninja else echo "'$RUNNER_OS' not supported" exit 1