summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-05-09 11:19:50 -0400
committerBrad King <brad.king@kitware.com>2023-05-10 10:13:01 -0400
commit3a20a5f149a50c219f341a9623815443220a8b52 (patch)
tree6bf34c771bff99fa57a4a4840e53323170faba38
parent5210b98ec276d4bb6e5dc2b7cca9abe84029cf69 (diff)
downloadcmake-3a20a5f149a50c219f341a9623815443220a8b52.tar.gz
gitlab-ci: Move macOS+Xcode universal binaries job to arm64
Over time we are adding `arm64` hosts and removing `x86_64` hosts.
-rw-r--r--.gitlab-ci.yml10
-rw-r--r--.gitlab/ci/configure_macos_arm64_xcode_ub.cmake (renamed from .gitlab/ci/configure_macos_x86_64_xcode_ub.cmake)0
-rw-r--r--.gitlab/ci/env_macos_arm64_xcode_ub.cmake1
-rw-r--r--.gitlab/ci/env_macos_x86_64_xcode_ub.cmake1
-rw-r--r--.gitlab/os-macos.yml4
5 files changed, 8 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 82abb44692..305c8d259e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -938,17 +938,17 @@ t:macos-x86_64-ninja-ub:
variables:
CMAKE_CI_JOB_NIGHTLY: "true"
-t:macos-x86_64-xcode-ub:
+t:macos-arm64-xcode-ub:
extends:
- - .macos_x86_64_xcode_ub
+ - .macos_arm64_xcode_ub
- .cmake_test_macos_external
- - .macos_x86_64_tags_ext
+ - .macos_arm64_tags_ext
- .cmake_junit_artifacts
- .run_dependent
dependencies:
- - t:macos-x86_64-ninja
+ - t:macos-arm64-ninja
needs:
- - t:macos-x86_64-ninja
+ - t:macos-arm64-ninja
variables:
CMAKE_CI_JOB_NIGHTLY: "true"
diff --git a/.gitlab/ci/configure_macos_x86_64_xcode_ub.cmake b/.gitlab/ci/configure_macos_arm64_xcode_ub.cmake
index 1b976d261a..1b976d261a 100644
--- a/.gitlab/ci/configure_macos_x86_64_xcode_ub.cmake
+++ b/.gitlab/ci/configure_macos_arm64_xcode_ub.cmake
diff --git a/.gitlab/ci/env_macos_arm64_xcode_ub.cmake b/.gitlab/ci/env_macos_arm64_xcode_ub.cmake
new file mode 100644
index 0000000000..244f088495
--- /dev/null
+++ b/.gitlab/ci/env_macos_arm64_xcode_ub.cmake
@@ -0,0 +1 @@
+set(ENV{CMAKE_OSX_ARCHITECTURES} "arm64;x86_64")
diff --git a/.gitlab/ci/env_macos_x86_64_xcode_ub.cmake b/.gitlab/ci/env_macos_x86_64_xcode_ub.cmake
deleted file mode 100644
index 4b5c401ef9..0000000000
--- a/.gitlab/ci/env_macos_x86_64_xcode_ub.cmake
+++ /dev/null
@@ -1 +0,0 @@
-set(ENV{CMAKE_OSX_ARCHITECTURES} "x86_64;arm64")
diff --git a/.gitlab/os-macos.yml b/.gitlab/os-macos.yml
index 3e11fd1aa0..1579338a76 100644
--- a/.gitlab/os-macos.yml
+++ b/.gitlab/os-macos.yml
@@ -80,11 +80,11 @@
CMAKE_GENERATOR: Xcode
CMAKE_CI_NIGHTLY_IGNORE_DEPS: "true"
-.macos_x86_64_xcode_ub:
+.macos_arm64_xcode_ub:
extends: .macos
variables:
- CMAKE_CONFIGURATION: macos_x86_64_xcode_ub
+ CMAKE_CONFIGURATION: macos_arm64_xcode_ub
CMAKE_GENERATOR: Xcode
CMAKE_CI_NIGHTLY_IGNORE_DEPS: "true"