vtk-m/.gitlab/ci/rhel8.yml
Ben Boeckel 23c0eadb8e Merge branch 'ci-arch-tags-1.9' into ci-arch-tags
* ci-arch-tags-1.9:
  gitlab-ci: use arch-specific tags for OS selection
  gitlab-ci: add missing feature tag for doxygen submission
  gitlab-ci: use arch-specific tags for OS selection
2022-12-21 09:35:46 -05:00

63 lines
1.1 KiB
YAML

# 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