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

97 lines
1.8 KiB
YAML
Raw Normal View History

2021-09-20 20:59:10 +00:00
build:ubuntu2004_gcc9:
tags:
- build
- vtkm
- docker
- linux
extends:
- .ubuntu2004
- .cmake_build_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2021-09-20 20:59:10 +00:00
variables:
CMAKE_BUILD_TYPE: Debug
VTKM_SETTINGS: "benchmarks+tbb+openmp+mpi+shared+hdf5"
test:ubuntu2004_gcc9:
tags:
- test
- vtkm
- docker
- linux
extends:
- .ubuntu2004
- .cmake_test_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2021-09-20 20:59:10 +00:00
variables:
#Restrict OpenMP number of threads since multiple test stages
#execute on the same hardware concurrently
OMP_NUM_THREADS: 4
dependencies:
- build:ubuntu2004_gcc9
needs:
- build:ubuntu2004_gcc9
2020-06-16 12:54:01 +00:00
build:ubuntu2004_kokkos:
tags:
- build
- vtkm
- docker
- linux
extends:
- .ubuntu2004_kokkos
- .cmake_build_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2020-06-16 12:54:01 +00:00
variables:
CMAKE_BUILD_TYPE: RelWithDebInfo
VTKM_SETTINGS: "kokkos+shared+64bit_floats"
test:ubuntu2004_kokkos:
tags:
- test
- vtkm
- docker
- linux
extends:
- .ubuntu2004_kokkos
- .cmake_test_linux
2021-10-18 18:36:16 +00:00
- .run_automatically
2020-06-16 12:54:01 +00:00
dependencies:
- build:ubuntu2004_kokkos
needs:
- build:ubuntu2004_kokkos
build:ubuntu2004_hip_kokkos:
tags:
- build
- vtkm
- docker
- radeon
extends:
- .ubuntu2004_hip_kokkos
- .cmake_build_linux
2021-10-18 18:36:16 +00:00
- .run_scheduled
variables:
CMAKE_BUILD_TYPE: RelWithDebInfo
VTKM_SETTINGS: "benchmarks+kokkos+hip+no_virtual+no_rendering"
CMAKE_PREFIX_PATH: "/opt/rocm/lib/cmake"
2021-10-15 16:24:33 +00:00
CTEST_MAX_PARALLELISM: "1"
timeout: 12 hours
test:ubuntu2004_hip_kokkos:
tags:
- build
- vtkm
- docker
- radeon
extends:
- .ubuntu2004_hip_kokkos
- .cmake_test_linux
2021-12-09 21:50:58 +00:00
- .run_scheduled
variables:
CTEST_TIMEOUT: "30"
dependencies:
- build:ubuntu2004_hip_kokkos
needs:
- build:ubuntu2004_hip_kokkos
2021-10-15 16:24:33 +00:00
timeout: 3 hours