File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -227,10 +227,10 @@ node {
227
227
}
228
228
}
229
229
parallel(build_docker_images);
230
+ archiveArtifacts artifacts : ' persistent' ;
230
231
DOCKER_IMAGE = dockerPush(' ubuntu22.04' , ' openroad' );
231
232
echo " Docker image is ${ DOCKER_IMAGE} " ;
232
233
}
233
- parallel(getParallelTests(DOCKER_IMAGE ));
234
234
stage(' Send Email Report' ) {
235
235
sendEmail();
236
236
}
Original file line number Diff line number Diff line change @@ -142,7 +142,8 @@ _test() {
142
142
echo " Could not find ${imagePath} , will attempt to create it" >&2
143
143
_create
144
144
fi
145
- docker run --rm " ${imagePath} " " ./docker/test_wrapper.sh" " ${compiler} " " ctest --test-dir build -j ${numThreads} "
145
+ mkdir -p persistent
146
+ docker run --rm -v $( pwd) /persistent:/mnt " ${imagePath} " " ./docker/test_wrapper.sh" " ${compiler} " " ctest --test-dir build -j ${numThreads} ; mv build persistent/${imageName} "
146
147
}
147
148
148
149
_checkFromImage () {
You can’t perform that action at this time.
0 commit comments