Skip to content
Snippets Groups Projects
Commit d0ce66e2 authored by Jö Fahlke's avatar Jö Fahlke
Browse files

[CI] Test cuda-built executables with native backend

Closes: #34
parent 10441df7
No related branches found
No related tags found
1 merge request!82[CI] Test cuda-built executables with native backend
Pipeline #13077 passed
......@@ -370,7 +370,7 @@ test-native-rv-release:
- ctest -j$(nproc) -LE '^rv-release-known-failure$' --output-on-failure
- ctest -j$(nproc) -L '^rv-release-known-failure$' --output-on-failure || true
test-cuda-debug:
test-cuda-cuda-debug:
extends: .test
image: $REGISTRY/$CI_PROJECT_PATH:pacxx-cuda.$PIPELINE_TAG
dependencies:
......@@ -386,7 +386,7 @@ test-cuda-debug:
- ": The following tests were skipped because they are known to be slow"
- ctest -N -L '^cuda-debug-slow$'
test-cuda-release:
test-cuda-cuda-release:
extends: .test
image: $REGISTRY/$CI_PROJECT_PATH:pacxx-cuda.$PIPELINE_TAG
dependencies:
......@@ -400,6 +400,37 @@ test-cuda-release:
- ctest -j$(nproc) -LE '^cuda-release-known-failure$' --output-on-failure
- ctest -j$(nproc) -L '^cuda-release-known-failure$' --output-on-failure || true
test-cuda-norv-release:
extends: .test
image: $REGISTRY/$CI_PROJECT_PATH:pacxx-cuda.$PIPELINE_TAG
dependencies:
- samples-source
- samples-build-cuda-make-release
tags:
- hpc2seci-nvidia
variables:
PACXX_DEFAULT_RT: 1 # native
PACXX_DISABLE_RV: 1 # disable region vectorizer
script:
- ctest -j$(nproc) -LE '^norv-release-known-failure$' --output-on-failure
- ctest -j$(nproc) -L '^norv-release-known-failure$' --output-on-failure || true
test-cuda-rv-debug:
extends: .test
image: $REGISTRY/$CI_PROJECT_PATH:pacxx-cuda.$PIPELINE_TAG
dependencies:
- samples-source
- samples-build-cuda-make-debug
tags:
- hpc2seci-nvidia
variables:
PACXX_DEFAULT_RT: 1 # native
script:
- ctest -j$(nproc) -LE '^rv-debug-(known-failure|slow)$' --output-on-failure
- ctest -j$(nproc) -L '^rv-debug-known-failure$' --output-on-failure || true
- ": The following tests were skipped because they are known to be slow"
- ctest -N -L '^rv-debug-slow$'
######################################################################
#
# Deploy: Make the just-built image official
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment