Browse Source

package/ci: use newer Mac VM.

next
Vladimír Vondruš 2 years ago
parent
commit
2be5398209
  1. 14
      package/ci/circleci.yml

14
package/ci/circleci.yml

@ -15,10 +15,12 @@ executors:
ubuntu-18_04: ubuntu-18_04:
docker: docker:
- image: ubuntu:bionic-20220427 - image: ubuntu:bionic-20220427
# Anything below 12.5.1 is deprecated as of August 2023 # Anything below 13.4.1 (and all x86 variants) are deprecated as of June 28th
xcode-12_5: # 2024
xcode-13_4:
macos: macos:
xcode: 12.5.1 xcode: 13.4.1
resource_class: macos.m1.medium.gen1
commands: commands:
install-base-linux: install-base-linux:
@ -316,7 +318,7 @@ jobs:
- lcov - lcov
macos-gl: macos-gl:
executor: xcode-12_5 executor: xcode-13_4
environment: environment:
CMAKE_CXX_FLAGS: --coverage CMAKE_CXX_FLAGS: --coverage
PLATFORM_GL_API: CGL PLATFORM_GL_API: CGL
@ -329,7 +331,7 @@ jobs:
- lcov - lcov
macos-gles3: macos-gles3:
executor: xcode-12_5 executor: xcode-13_4
environment: environment:
CMAKE_CXX_FLAGS: --coverage CMAKE_CXX_FLAGS: --coverage
PLATFORM_GL_API: EGL PLATFORM_GL_API: EGL
@ -346,7 +348,7 @@ jobs:
- lcov - lcov
macos-static: macos-static:
executor: xcode-12_5 executor: xcode-13_4
environment: environment:
# STUPID yml interprets unquoted ON as a boolean # STUPID yml interprets unquoted ON as a boolean
BUILD_STATIC: "ON" BUILD_STATIC: "ON"

Loading…
Cancel
Save