vtk-m/.gitlab/ci/rhel8.yml
Ben Boeckel 7766bbc3cd gitlab-ci: use arch-specific tags for OS selection
Also add some missing OS tags for HIP jobs.
2022-12-21 09:34:18 -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