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

68 lines
1.5 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-03-11 18:16:04 +00:00
# Build on centos7 with CUDA and test on rhel8 and centos7
# gcc 7.3.1
build:centos7_gcc73:
2020-03-11 18:16:04 +00:00
tags:
- build
- vtkm
- docker
- linux-x86_64
2020-03-11 18:16:04 +00:00
- large-memory
extends:
- .centos7
- .cmake_build_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
- .use_minimum_supported_cmake
2020-03-11 18:16:04 +00:00
variables:
CMAKE_BUILD_TYPE: RelWithDebInfo
CMAKE_GENERATOR: "Unix Makefiles"
2021-10-13 21:30:02 +00:00
VTKM_SETTINGS: "cuda+turing+32bit_ids+no_rendering+shared"
2020-03-11 18:16:04 +00:00
test:centos7_gcc73:
2020-03-11 18:16:04 +00:00
tags:
- test
- vtkm
- docker
- linux-x86_64
- cuda-rt
- turing
2020-03-11 18:16:04 +00:00
extends:
- .centos7
- .cmake_test_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
- .use_minimum_supported_cmake
2020-03-11 18:16:04 +00:00
dependencies:
- build:centos7_gcc73
2020-03-11 18:16:04 +00:00
needs:
- build:centos7_gcc73
2020-03-11 18:16:04 +00:00
test:rhel8_test_centos7:
tags:
- test
- vtkm
- docker
- linux-x86_64
- cuda-rt
- turing
2020-03-11 18:16:04 +00:00
extends:
- .rhel8
- .cmake_test_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
variables:
CTEST_EXCLUSIONS: "built_against_test_install"
2020-03-11 18:16:04 +00:00
dependencies:
- build:centos7_gcc73
2020-03-11 18:16:04 +00:00
needs:
- build:centos7_gcc73