From e412412c0cbc3752fb98d760cf4609cf14af0ec6 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Fri, 8 Dec 2023 14:10:23 +0100 Subject: [PATCH] ci: check if apple-clang 14.3 also works --- .github/workflows/ci-conan.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 248d8580f0..e608297f33 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -116,6 +116,18 @@ jobs: lib: "libc++", conan-config: "", } + - { + name: "Apple Clang 14.3", + os: macos-13, + compiler: + { + type: APPLE_CLANG, + version: "14.3", + cc: "clang", + cxx: "clang++", + }, + conan-config: "", + } - { name: "Apple Clang 15", os: macos-13, @@ -174,11 +186,11 @@ jobs: shell: bash 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 == '15.0' + - name: Select proper Xcode version + if: matrix.config.compiler.type == 'APPLE_CLANG' shell: bash run: | - sudo xcode-select -s /Applications/Xcode_15.0.app && /usr/bin/xcodebuild -version + sudo xcode-select -s /Applications/Xcode_${{ matrix.config.compiler.version }}.app && /usr/bin/xcodebuild -version - name: Install Ninja shell: bash run: |