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

56 lines
964 B
YAML
Raw Normal View History

2020-03-11 18:16:04 +00:00
# Build on centos7 with CUDA and test on rhel8 and centos7
# gcc 4.8
build:centos7_gcc48:
tags:
- build
- vtkm
- docker
- linux
- cuda-rt
2020-03-11 18:16:04 +00:00
- large-memory
extends:
- .centos7
- .cmake_build_linux
- .only-default
2020-03-11 18:16:04 +00:00
variables:
CMAKE_BUILD_TYPE: RelWithDebInfo
CMAKE_GENERATOR: "Unix Makefiles"
VTKM_SETTINGS: "cuda+turing+32bit_ids+no_rendering"
2020-03-11 18:16:04 +00:00
test:centos7_gcc48:
tags:
- test
- vtkm
- docker
- linux
- cuda-rt
- turing
2020-03-11 18:16:04 +00:00
extends:
- .centos7
- .cmake_test_linux
- .only-default
2020-03-11 18:16:04 +00:00
dependencies:
- build:centos7_gcc48
needs:
- build:centos7_gcc48
test:rhel8_test_centos7:
tags:
- test
- vtkm
- docker
- linux
- cuda-rt
- turing
2020-03-11 18:16:04 +00:00
extends:
- .rhel8
- .cmake_test_linux
- .only-default
variables:
CTEST_EXCLUSIONS: "built_against_test_install"
2020-03-11 18:16:04 +00:00
dependencies:
- build:centos7_gcc48
needs:
- build:centos7_gcc48