Skip to content

Commit

Permalink
ci: check if we are able to enable macos in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mpusz committed Dec 8, 2023
1 parent f782b51 commit 39533be
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,18 +116,18 @@ jobs:
lib: "libc++",
conan-config: "",
}
# - {
# name: "Apple Clang 13",
# os: macos-11,
# compiler:
# {
# type: APPLE_CLANG,
# version: "13.0",
# cc: "clang",
# cxx: "clang++",
# },
# conan-config: "",
# }
- {
name: "Apple Clang 15",
os: macos-latest,
compiler:
{
type: APPLE_CLANG,
version: "15.0",
cc: "clang",
cxx: "clang++",
},
conan-config: "",
}
build_type: ["Release", "Debug"]

env:
Expand Down Expand Up @@ -175,10 +175,10 @@ jobs:
run: |
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
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
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
shell: bash
run: |
Expand Down

0 comments on commit 39533be

Please sign in to comment.