We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eda3a4a commit 1da68e2Copy full SHA for 1da68e2
1 file changed
.gitlab-ci.yml
@@ -68,3 +68,15 @@ syntax:
68
- DEBIAN_FRONTEND=noninteractive apt install -y tzdata
69
- apt install -y python3
70
- python3 syntax/check.py -r syntax/opdi.syntax.json tests macroexample.cpp omptexample.cpp
71
+
72
+thread-sanitizer:
73
+ image: $CI_REGISTRY/$CI_PROJECT_NAMESPACE/opdilib/opdi-tsan
74
+ script:
75
+ - git clone --depth 1 --branch develop https://github.com/SciCompKL/CoDiPack.git
76
+ - export CODI_DIR=$(pwd)/CoDiPack/include
77
+ - export OPDI_DIR=$(pwd)/include
78
+ - cd tests
79
+ - export CXX=g++
80
+ - export CXXFLAGS="-g"
81
+ - export OMP_NUM_THREADS=$(expr $(nproc --all) / 2)
82
+ - make all
0 commit comments