vtk-m/.gitlab/ci/rhel8.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

74 lines
1.5 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.
##
##=============================================================================
# Build on rhel8 with serial and test on rhel8
# Uses gcc 8.2.1
build:rhel8:
tags:
- build
- vtkm
- docker
- linux-x86_64
extends:
- .rhel8
- .cmake_build_linux
- .run_automatically
variables:
CMAKE_GENERATOR: "Unix Makefiles"
VTKM_SETTINGS: "serial+shared+64bit_floats+32bit_ids"
test:rhel8:
tags:
- test
- vtkm
- docker
- linux-x86_64
extends:
- .rhel8
- .cmake_test_linux
- .run_automatically
dependencies:
- build:rhel8
needs:
- build:rhel8
# Build on rhel8 with serial and the VTK-supported types
# Uses gcc 8.2.1
build:rhel8_vtk_types:
tags:
- build
- vtkm
- docker
- linux-x86_64
extends:
- .rhel8
- .cmake_build_linux
- .run_automatically
variables:
CMAKE_GENERATOR: "Unix Makefiles"
VTKM_SETTINGS: "serial+vtk_types"
test:rhel8_vtk_types:
tags:
- test
- vtkm
- docker
- linux-x86_64
extends:
- .rhel8
- .cmake_test_linux
- .run_automatically
dependencies:
- build:rhel8_vtk_types
needs:
- build:rhel8_vtk_types