ci: Apple clang 13 support added to "CMake Test Package CI"

This commit is contained in:
Frank Dischner
2022-01-29 11:25:32 -06:00
parent ee10be7535
commit 4ae66aafb1

View File

@@ -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