vtk-m2/.gitlab/ci/rhel8.yml

63 lines
1.1 KiB
YAML
Raw Normal View History

2020-03-11 18:16:04 +00:00
# Build on rhel8 with serial and test on rhel8
# Uses gcc 8.2.1
build:rhel8:
tags:
- build
- vtkm
- docker
- linux
extends:
- .rhel8
- .cmake_build_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2020-03-11 18:16:04 +00:00
variables:
CMAKE_GENERATOR: "Unix Makefiles"
2021-10-13 21:30:02 +00:00
VTKM_SETTINGS: "serial+shared+64bit_floats+32bit_ids+use_virtuals"
2020-03-11 18:16:04 +00:00
test:rhel8:
tags:
- test
- vtkm
- docker
- linux
extends:
- .rhel8
- .cmake_test_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2020-03-11 18:16:04 +00:00
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
extends:
- .rhel8
- .cmake_build_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
variables:
CMAKE_GENERATOR: "Unix Makefiles"
VTKM_SETTINGS: "serial+vtk_types"
test:rhel8_vtk_types:
tags:
- test
- vtkm
- docker
- linux
extends:
- .rhel8
- .cmake_test_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
dependencies:
- build:rhel8_vtk_types
needs:
- build:rhel8_vtk_types