vtk-m/.gitlab/ci/centos8.yml

38 lines
736 B
YAML
Raw Normal View History

2020-04-17 19:06:29 +00:00
# Build on centos8 with serial and test on centos8
# Uses gcc 8.2.1
build:centos8_sanitizer:
tags:
- build
- vtkm
- docker
- linux
extends:
- .centos8
- .cmake_build_linux
- .only-default
variables:
CMAKE_BUILD_TYPE: RelWithDebInfo
CMAKE_GENERATOR: "Unix Makefiles"
2020-04-20 18:29:01 +00:00
VTKM_SETTINGS: "serial+shared+openmp+asan+leak"
2020-04-17 19:06:29 +00:00
2020-04-20 16:15:08 +00:00
test:centos8_sanitizer:
2020-04-17 19:06:29 +00:00
tags:
- test
- vtkm
- docker
- linux
- privileged
extends:
- .centos8
- .cmake_memcheck_linux
- .only-default
variables:
2020-04-20 18:29:01 +00:00
OMP_NUM_THREADS: 4
2020-04-17 19:06:29 +00:00
CTEST_MEMORYCHECK_TYPE: LeakSanitizer
CTEST_EXCLUSIONS: "RegressionTest.*"
2020-04-17 19:06:29 +00:00
dependencies:
- build:centos8_sanitizer
needs:
- build:centos8_sanitizer