ci: check if we are able to enable macos in the CI

This commit is contained in:
Mateusz Pusz
2023-12-08 13:43:05 +01:00
parent f782b51885
commit 39533beb0a

View File

@@ -116,18 +116,18 @@ jobs:
lib: "libc++", lib: "libc++",
conan-config: "", conan-config: "",
} }
# - { - {
# name: "Apple Clang 13", name: "Apple Clang 15",
# os: macos-11, os: macos-latest,
# compiler: compiler:
# { {
# type: APPLE_CLANG, type: APPLE_CLANG,
# version: "13.0", version: "15.0",
# cc: "clang", cc: "clang",
# cxx: "clang++", cxx: "clang++",
# }, },
# conan-config: "", conan-config: "",
# } }
build_type: ["Release", "Debug"] build_type: ["Release", "Debug"]
env: env:
@@ -175,10 +175,10 @@ jobs:
run: | run: |
sudo apt install -y libc++-${{ matrix.config.compiler.version }}-dev libc++abi-${{ matrix.config.compiler.version }}-dev libunwind-${{ matrix.config.compiler.version }}-dev sudo apt install -y libc++-${{ matrix.config.compiler.version }}-dev libc++abi-${{ matrix.config.compiler.version }}-dev libunwind-${{ matrix.config.compiler.version }}-dev
- name: Select Xcode 13.0 - name: Select Xcode 13.0
if: matrix.config.compiler.type == 'APPLE_CLANG' && matrix.config.compiler.version == '13.0' if: matrix.config.compiler.type == 'APPLE_CLANG' && matrix.config.compiler.version == '15.0'
shell: bash shell: bash
run: | run: |
sudo xcode-select -s "/Applications/Xcode_13.0.app" sudo xcode-select -s /Applications/Xcode_15.0.1.app && /usr/bin/xcodebuild -version
- name: Install Ninja - name: Install Ninja
shell: bash shell: bash
run: | run: |