Browse Source

package/ci: use an Xcode image that isn't going to get removed.

pull/680/head
Vladimír Vondruš 7 months ago
parent
commit
d0e4e86df7
  1. 15
      package/ci/circleci.yml

15
package/ci/circleci.yml

@ -20,11 +20,10 @@ executors:
ubuntu-20_04: ubuntu-20_04:
machine: machine:
image: ubuntu-2004:2024.11.1 image: ubuntu-2004:2024.11.1
# Anything below 13.4.1 (and all x86 variants) are deprecated as of June 28th # Images below 14.0.1 (and all x86 variants) are removed as of Nov 7, 2025
# 2024 xcode-14_0:
xcode-13_4:
macos: macos:
xcode: 13.4.1 xcode: 14.0.1
resource_class: macos.m1.medium.gen1 resource_class: macos.m1.medium.gen1
# Used by the static macOS build, to build against static MoltenVK. It # Used by the static macOS build, to build against static MoltenVK. It
# requires Xcode 14+ as 13 suffers from undefined _objc_msgSend$ symbols: # requires Xcode 14+ as 13 suffers from undefined _objc_msgSend$ symbols:
@ -670,7 +669,7 @@ jobs:
script: unix-desktop.sh script: unix-desktop.sh
macos-gl: macos-gl:
executor: xcode-13_4 executor: xcode-14_0
environment: environment:
CMAKE_CXX_FLAGS: --coverage CMAKE_CXX_FLAGS: --coverage
CONFIGURATION: Debug CONFIGURATION: Debug
@ -686,7 +685,7 @@ jobs:
- lcov - lcov
macos-gles3: macos-gles3:
executor: xcode-13_4 executor: xcode-14_0
environment: environment:
CMAKE_CXX_FLAGS: --coverage CMAKE_CXX_FLAGS: --coverage
CONFIGURATION: Debug CONFIGURATION: Debug
@ -705,7 +704,7 @@ jobs:
- lcov - lcov
macos-vulkan: macos-vulkan:
executor: xcode-13_4 executor: xcode-14_0
environment: environment:
CMAKE_CXX_FLAGS: --coverage CMAKE_CXX_FLAGS: --coverage
CONFIGURATION: Debug CONFIGURATION: Debug
@ -835,7 +834,7 @@ jobs:
script: android-x86-vulkan.sh script: android-x86-vulkan.sh
ios-gles3: ios-gles3:
executor: xcode-13_4 executor: xcode-14_0
environment: environment:
# STUPID yml interprets unquoted ON as a boolean # STUPID yml interprets unquoted ON as a boolean
TARGET_GLES2: "OFF" TARGET_GLES2: "OFF"

Loading…
Cancel
Save