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

70 lines
1.7 KiB
YAML
Raw Normal View History

##=============================================================================
##
## Copyright (c) Kitware, Inc.
## All rights reserved.
## See LICENSE.txt for details.
##
## This software is distributed WITHOUT ANY WARRANTY; without even
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE. See the above copyright notice for more information.
##
##=============================================================================
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-x86_64
2020-04-17 19:06:29 +00:00
extends:
- .centos8
- .cmake_build_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2020-04-17 19:06:29 +00:00
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-x86_64
2020-04-17 19:06:29 +00:00
- privileged
extends:
- .centos8
- .cmake_memcheck_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2020-04-17 19:06:29 +00:00
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: >-
smoke_test_cmake_built_against_test_install
smoke_test_make_built_against_test_install
smoke_test_pkgconfig_make_built_against_test_install
2020-04-17 19:06:29 +00:00
dependencies:
- build:centos8_sanitizer
needs:
- build:centos8_sanitizer
# Build on centos8 without tests
# Uses gcc 8.2.1
build:centos8:
tags:
- build
- vtkm
- docker
2023-03-14 15:53:56 +00:00
- linux-x86_64
extends:
- .centos8
- .cmake_build_linux
- .run_automatically
variables:
CMAKE_BUILD_TYPE: RelWithDebInfo
CMAKE_GENERATOR: "Unix Makefiles"
VTKM_SETTINGS: "serial+no_testing+min_build"