diff options
author | Brad King <brad.king@kitware.com> | 2022-06-13 16:46:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-06-13 19:04:24 (GMT) |
commit | 7a21173b0eda59959b12d2e878e54f0b90d68b1d (patch) | |
tree | 1a2db1b3dae1b05ae8f562d8db039881599008a3 /.gitlab-ci.yml | |
parent | 06c6e76a126d357ce02b6736e4ded9e6fd9aa3ed (diff) | |
download | CMake-7a21173b0eda59959b12d2e878e54f0b90d68b1d.zip CMake-7a21173b0eda59959b12d2e878e54f0b90d68b1d.tar.gz CMake-7a21173b0eda59959b12d2e878e54f0b90d68b1d.tar.bz2 |
gitlab-ci: Add job to build Windows arm64 binaries
Base it on the approach from commit 4c7c66dcf5 (gitlab-ci: Add jobs to
make Windows x86_64 and i386 packages, 2022-05-19). Leave out the
packaging and upload steps for now because they are only for the nightly
binaries, and will need a new release of CPack to pass the `arm64`
architecture to WiX.
Issue: #21902
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5258ab3..fc05626 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1100,3 +1100,17 @@ u:windows-i386-package: - k:windows-i386-package needs: - k:windows-i386-package + +b:windows-arm64-package: + extends: + - .windows_arm64_package + - .cmake_build_windows + - .cmake_build_package_artifacts + - .windows_tags_nonconcurrent_vs2022_arm64 + - .run_only_for_package + dependencies: + - p:doc-package + needs: + - p:doc-package + variables: + CMAKE_CI_ARTIFACTS_NAME: "artifacts-windows-arm64-build" |