File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,9 @@ build:sanitized_memory:
5757
5858test:default :
5959 stage : test
60+
6061 needs : ["build:default"]
62+
6163 script :
6264 - cd build
6365 - ctest -V
@@ -67,7 +69,9 @@ test:default:
6769
6870test:sanitized :
6971 stage : test
72+
7073 needs : ["build:sanitized"]
74+
7175 script :
7276 - cd build-sanitized
7377 - ctest -V
@@ -77,10 +81,24 @@ test:sanitized:
7781
7882test:sanitized_memory :
7983 stage : test
84+
8085 needs : ["build:sanitized_memory"]
86+
8187 script :
8288 - cd build-sanitized-memory
8389 - ctest -V
8490 artifacts :
8591 paths :
86- - build-sanitized-memory/
92+ - build-sanitized-memory/
93+
94+ test:valgrind :
95+ stage : test
96+
97+ needs : ["build:default"]
98+
99+ script :
100+ - cd build
101+ - ctest -T memcheck -V
102+ artifacts :
103+ paths :
104+ - build/
You can’t perform that action at this time.
0 commit comments