Skip to content
Snippets Groups Projects
Commit 8961e67e authored by Raphael Defosseux's avatar Raphael Defosseux
Browse files

CI: fix syntax error in pipeline

parent caa5ad6e
No related branches found
No related tags found
No related merge requests found
......@@ -319,7 +319,7 @@ pipeline {
always {
script {
dir ('archives') {
sh "if [ -d basic_sim/test ] || [ -d phy_sim/test]; then zip -r -qq vm_tests_logs.zip */test ; fi"
sh "if [ -d basic_sim/test ] || [ -d phy_sim/test ]; then zip -r -qq vm_tests_logs.zip */test ; fi"
}
if(fileExists('archives/vm_tests_logs.zip')) {
archiveArtifacts artifacts: 'archives/vm_tests_logs.zip'
......
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