1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
|
include:
# Metadata shared my many jobs
- local: .gitlab/rules.yml
- local: .gitlab/artifacts.yml
- local: .gitlab/warning-policy.yml
# OS builds.
- local: .gitlab/os-linux.yml
- local: .gitlab/os-macos.yml
- local: .gitlab/os-windows.yml
stages:
- build
- test
################################################################################
# Job declarations
#
# Each job must pull in each of the following keys:
#
# - a "base image"
# - a build script
# - tags for the jobs
# - already provided for upload and CI update jobs
# - rules for when to run the job
#
# Additionally, jobs may also contain:
#
# - artifacts
# - needs jobs for required jobs
################################################################################
# Linux
## Spack
# spack-centos7:build:
# extends:
# - .centos7
# - .spack_build_linux
# - .linux_builder_tags
# - .run_scheduled
## Linux
el7-mindeps-shared-mpi-python:build:
extends:
- .el7_mindeps_shared_mpi_python
- .cmake_build_linux
- .linux_builder_tags
- .cmake_build_artifacts
- .run_manually
# Disable testing for now. Even with a modern Mesa and the llvmpipe backend,
# modern enough OpenGL is just not working in CI. Rather than disabling just
# about everything in the test suite, just skip testing altogether.
# el7-mindeps-shared-mpi-python:test:
# extends:
# - .el7_mindeps_shared_mpi_python
# - .cmake_test_linux
# - .linux_tester_tags
# - .cmake_test_artifacts
# - .run_automatically
# needs:
# - el7-mindeps-shared-mpi-python:build
fedora35-static-mpi-offscreen-osmesa-python:build:
extends:
- .fedora35_static_mpi_offscreen_osmesa_python
- .cmake_build_linux
- .linux_builder_tags
- .cmake_build_artifacts
- .run_manually
fedora35-static-mpi-offscreen-osmesa-python:test:
extends:
- .fedora35_static_mpi_offscreen_osmesa_python
- .cmake_test_linux
- .linux_builder_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- fedora35-static-mpi-offscreen-osmesa-python:build
el8-shared-icc-mpi-python:build:
extends:
- .el8_shared_icc_mpi_python
- .cmake_build_linux
- .linux_builder_tags
- .cmake_build_artifacts
- .run_manually
el8-shared-icc-mpi-python:test:
extends:
- .el8_shared_icc_mpi_python
- .cmake_test_linux
- .linux_tester_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- el8-shared-icc-mpi-python:build
fedora35-shared-debug-mpi-python-qt:build:
extends:
- .fedora35_shared_debug_mpi_python_qt
- .cmake_build_linux
- .linux_builder_tags
- .cmake_build_artifacts
- .run_manually
fedora35-shared-debug-mpi-python-qt:test:
extends:
- .fedora35_shared_debug_mpi_python_qt
- .cmake_test_linux
- .linux_tester_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- fedora35-shared-debug-mpi-python-qt:build
timeout: 180 minutes
fedora35-shared-mpi-python-qt-vtkmoverride:build:
extends:
- .fedora35_shared_mpi_python_qt_vtkmoverride
- .cmake_build_linux
- .linux_builder_tags
- .cmake_build_artifacts
- .run_manually
fedora35-shared-mpi-python-qt-vtkmoverride:test:
extends:
- .fedora35_shared_mpi_python_qt_vtkmoverride
- .cmake_test_linux
- .linux_tester_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- fedora35-shared-mpi-python-qt-vtkmoverride:build
timeout: 120 minutes
# Translations
translations:test:
extends:
- .fedora35_shared_debug_mpi_python_qt
- .cmake_translations_linux
- .linux_tester_tags
- .cmake_translations_artifacts
- .merged_only
needs:
- fedora35-shared-debug-mpi-python-qt:build
timeout: 15 minutes
## Catalyst editions
fedora35-shared-mpi-core:build:
extends:
- .fedora35_shared_mpi_core
- .cmake_build_linux
- .linux_builder_tags
- .cmake_build_artifacts
- .run_manually
fedora35-shared-mpi-core:test:
extends:
- .fedora35_shared_mpi_core
- .cmake_test_linux
- .linux_tester_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- fedora35-shared-mpi-core:build
fedora35-shared-mpi-python-core:build:
extends:
- .fedora35_shared_mpi_python_core
- .cmake_build_linux
- .linux_builder_tags
- .cmake_build_artifacts
- .run_manually
fedora35-shared-mpi-python-core:test:
extends:
- .fedora35_shared_mpi_python_core
- .cmake_test_linux
- .linux_tester_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- fedora35-shared-mpi-python-core:build
## Static analysis
fedora35-tidy:build:
extends:
- .fedora35_tidy
- .cmake_build_linux
- .linux_builder_tags
- .cmake_tidy_artifacts
- .run_manually
# clang-tidy is *really* slow because it isn't cached.
timeout: 3 hours
# macOS
macos-arm64-python-qt:build:
extends:
- .macos_arm64_python_qt
- .cmake_build_macos
- .macos_arm64_builder_tags
- .cmake_build_artifacts
- .run_manually
macos-arm64-python-qt:test:
extends:
- .macos_arm64_python_qt
- .cmake_test_macos
- .macos_arm64_builder_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- macos-arm64-python-qt:build
macos-x86_64-python-qt:build:
extends:
- .macos_x86_64_python_qt
- .cmake_build_macos
- .macos_x86_64_builder_tags
- .cmake_build_artifacts
- .run_manually
macos-x86_64-python-qt:test:
extends:
- .macos_x86_64_python_qt
- .cmake_test_macos
- .macos_x86_64_builder_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- macos-x86_64-python-qt:build
# Windows
windows-vs2022-kits-mpi-python-qt:build:
extends:
- .windows_vs2022_kits_mpi_python_qt
- .cmake_build_windows
- .windows_builder_tags
- .cmake_build_artifacts
- .run_manually
timeout: 90 minutes
windows-vs2022-kits-mpi-python-qt:test:
extends:
- .windows_vs2022_kits_mpi_python_qt
- .cmake_test_windows
- .windows_test_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- windows-vs2022-kits-mpi-python-qt:build
timeout: 90 minutes
windows-vs2022-qt:build:
extends:
- .windows_vs2022_qt
- .cmake_build_windows
- .windows_builder_tags
- .cmake_build_artifacts
- .run_manually
timeout: 90 minutes
windows-vs2022-qt:test:
extends:
- .windows_vs2022_qt
- .cmake_test_windows
- .windows_test_tags
- .cmake_test_artifacts
- .run_automatically
needs:
- windows-vs2022-qt:build
timeout: 90 minutes
# Deployment
## Documentation
documentation:build:
extends:
- .fedora35
- .doxygen_build_linux
- .linux_builder_tags
- .doxygen_log_artifacts
- .doxygen_only
fedora35-doxygen:build:
extends:
- .fedora35
- .cmake_build_linux
- .linux_builder_tags
- .cmake_doxygen_artifacts
- .run_manually
variables:
CMAKE_CONFIGURATION: fedora35_doxygen
# Triggers
## Superbuild
superbuild:build:
extends:
- .run_superbuild_trigger
stage: build
variables:
PARAVIEW_BRANCH: $CI_COMMIT_REF_NAME
RSYNC_UPLOAD_ENABLE: "true"
trigger:
project: paraview/paraview-superbuild
branch: $CI_COMMIT_REF_NAME
strategy: depend
|