summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-05-06 18:28:44 (GMT)
committerBrad King <brad.king@kitware.com>2021-05-07 14:14:29 (GMT)
commita5a4b0b6ab01a6747a9ee4aed3693836f77c3eef (patch)
treeaffb25b8d2ad35fdc1e37737d606f65c9f0946d5 /.gitlab-ci.yml
parent354ae6fe2e48d15ed205b39b59f553f1e32aa8dd (diff)
downloadCMake-a5a4b0b6ab01a6747a9ee4aed3693836f77c3eef.zip
CMake-a5a4b0b6ab01a6747a9ee4aed3693836f77c3eef.tar.gz
CMake-a5a4b0b6ab01a6747a9ee4aed3693836f77c3eef.tar.bz2
gitlab-ci: add jobs to upload cmake.org/cmake/help/git-{master,stage} docs
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 090012a..f8a22a5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -70,11 +70,33 @@ build:help:master:
- .cmake_org_help
- .run_only_for_continuous_master
+upload:help:master:
+ extends:
+ - .rsync_upload_help
+ - .run_only_for_continuous_master
+ variables:
+ RSYNC_DESTINATION: git-master
+ dependencies:
+ - build:help:master
+ needs:
+ - build:help:master
+
build:help:stage:
extends:
- .cmake_org_help
- .run_only_for_continuous_stage
+upload:help:stage:
+ extends:
+ - .rsync_upload_help
+ - .run_only_for_continuous_stage
+ variables:
+ RSYNC_DESTINATION: git-stage
+ dependencies:
+ - build:help:stage
+ needs:
+ - build:help:stage
+
# Lint builds
build:debian10-iwyu: