diff options
author | Brad King <brad.king@kitware.com> | 2023-02-28 14:33:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-02-28 18:39:44 (GMT) |
commit | 0929221ca3641ed890b15fc9abd416a5311138cf (patch) | |
tree | e2e993f3238516f69888fcbee72edede8da5753c /.gitlab/artifacts.yml | |
parent | ce2e8253069fa1e5750b800a19f85c6e3b359bd8 (diff) | |
download | CMake-0929221ca3641ed890b15fc9abd416a5311138cf.zip CMake-0929221ca3641ed890b15fc9abd416a5311138cf.tar.gz CMake-0929221ca3641ed890b15fc9abd416a5311138cf.tar.bz2 |
gitlab-ci: Simplify Windows packaging pipeline
In commit 4c7c66dcf5 (gitlab-ci: Add jobs to make Windows x86_64 and
i386 packages, 2022-05-19, v3.24.0-rc1~112^2) we used a separate Windows
packaging job in nightly packaging pipelines. It did not run in release
pipelines, where we need to run the final packaging step manually with
signing. Simplify nightly packaging pipelines by running `cpack` at the
end of the build job as we do for other platforms.
For release packaging pipelines, create an archive of the files needed
to build a package, and present this as the built "package" on Windows.
Diffstat (limited to '.gitlab/artifacts.yml')
-rw-r--r-- | .gitlab/artifacts.yml | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/.gitlab/artifacts.yml b/.gitlab/artifacts.yml index 1b5384f..3557596 100644 --- a/.gitlab/artifacts.yml +++ b/.gitlab/artifacts.yml @@ -63,35 +63,6 @@ - build/DartConfiguation.tcl - build/CTestCustom.cmake -.cmake_build_package_artifacts: - artifacts: - expire_in: 1d - name: "$CMAKE_CI_ARTIFACTS_NAME" - paths: - # Allow CPack to find CMAKE_ROOT. - - build/CMakeFiles/CMakeSourceDir.txt - - # Install rules. - - build/**/cmake_install.cmake - - # We need the main binaries. - - build/bin/ - - # Pass through the documentation. - - build/install-doc/ - - # CPack configuration. - - build/CPackConfig.cmake - - build/CMakeCPackOptions.cmake - - build/Source/QtDialog/QtDialogCPack.cmake - - # CPack/IFW packaging files. - - build/CMake*.qs - - # CPack/WIX packaging files. - - build/Utilities/Release/WiX/custom_action_dll*.wxs - - build/Utilities/Release/WiX/CustomAction/CMakeWiXCustomActions.* - .cmake_release_artifacts: artifacts: expire_in: 5d |