vtk-m/.gitlab/ci/doxygen.yml
Kenneth Moreland 898115a410 Add copyright notice to scipts and configuration files
There are numerous scripts and configuration files defined in the CI setup
and elsewhere that were missing the copyright statement. Add more types
of files to check in the CopyrightStatement test, and update the files
with the appropriate statement.
2023-07-25 11:05:40 -06:00

60 lines
1.7 KiB
YAML

##=============================================================================
##
## Copyright (c) Kitware, Inc.
## All rights reserved.
## See LICENSE.txt for details.
##
## This software is distributed WITHOUT ANY WARRANTY; without even
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE. See the above copyright notice for more information.
##
##=============================================================================
.doxygen_submit: &doxygen_submit
stage: build
tags:
- build
- vtkm
- docker
- linux-x86_64
before_script:
- "cmake -V -P .gitlab/ci/config/gitlab_ci_setup.cmake"
- "ctest -VV -S .gitlab/ci/ctest_configure.cmake"
script:
- doxygen build/docs/doxyfile
- chmod 400 $DOC_KEY_FILE
- rsync -tv --recursive --delete -e "ssh -i $DOC_KEY_FILE -o StrictHostKeyChecking=no" build/docs/doxygen/html/ "kitware@web.kitware.com:vtkm_documentation/$DOXYGEN_UPLOAD_REMOTE_PATH"
timeout: 30 minutes
interruptible: true
variables:
CMAKE_BUILD_TYPE: Release
VTKM_SETTINGS: "tbb+openmp+mpi+shared+docs"
docs:nightly:
environment:
name: doxygen-nightly
url: https://docs-m.vtk.org/nightly/
rules:
- if: '$CI_PROJECT_PATH == "vtk/vtk-m" && $CI_COMMIT_REF_NAME == "master"'
when: on_success
- when: never
extends:
- .ubuntu2004_doxygen
- .doxygen_submit
variables:
DOXYGEN_UPLOAD_REMOTE_PATH: "nightly"
docs:latest:
environment:
name: doxygen-latest
url: https://docs-m.vtk.org/latest/index.html
rules:
- if: '$CI_PROJECT_PATH == "vtk/vtk-m" && $CI_COMMIT_TAG'
when: on_success
- when: never
extends:
- .ubuntu2004_doxygen
- .doxygen_submit
variables:
DOXYGEN_UPLOAD_REMOTE_PATH: "latest"