diff options
author | Brad King <brad.king@kitware.com> | 2021-03-12 17:58:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-03-12 18:05:55 (GMT) |
commit | 9b5eae9cdebd0cdb9be13c9c7740eaa0a883024b (patch) | |
tree | e5db647e823c868960c22429edbf7ef6dcbec775 /.gitlab | |
parent | c69d4b177fb3f6ebd22cddec919dbe1c30f43714 (diff) | |
download | CMake-9b5eae9cdebd0cdb9be13c9c7740eaa0a883024b.zip CMake-9b5eae9cdebd0cdb9be13c9c7740eaa0a883024b.tar.gz CMake-9b5eae9cdebd0cdb9be13c9c7740eaa0a883024b.tar.bz2 |
gitlab-ci: remove redundant sphinx build from release-style CI jobs
The Sphinx build is mostly serial and takes a long time. All our CI
pipelines (packaging, integration branches, merge requests) have a
dedicated job for the Sphinx build.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/os-linux.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab/os-linux.yml b/.gitlab/os-linux.yml index e36d97d..e40760e 100644 --- a/.gitlab/os-linux.yml +++ b/.gitlab/os-linux.yml @@ -253,7 +253,8 @@ script: # Bootstrap. - mkdir -p build/ - - cp -v Utilities/Release/linux/$CMAKE_ARCH/cache.txt build/CMakeCache.txt + # Exclude documentation. A job dependency provides it for packaging. + - sed '/^# Build doc/,/^$/d' Utilities/Release/linux/$CMAKE_ARCH/cache.txt > build/CMakeCache.txt # Make sccache available. - .gitlab/ci/sccache.sh - export PATH=$PWD/.gitlab:$PATH |