8000 Feature/jenkins pipeline (#2966) · Hotkey/arangodb@982331d · GitHub
[go: up one dir, main page]

Skip to content

Commit 982331d

Browse files
authored
Feature/jenkins pipeline (arangodb#2966)
1 parent ff35dce commit 982331d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Installation/Pipeline/Jenkinsfile.feature

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ def testEdition(edition, os, mode, engine) {
562562
}
563563
catch (exc) {
564564
if (os == 'linux' || os == 'mac') {
565-
sh "for i in build core* tmp; do test -e \$i && mv \"\$i\" ${arch} || true; done"
565+
sh "for i in build core* tmp; do test -e \"\$i\" && mv \"\$i\" ${arch} || true; done"
566566
}
567567

568568
archiveArtifacts allowEmptyArchive: true,
@@ -574,7 +574,7 @@ def testEdition(edition, os, mode, engine) {
574574
finally {
575575
if (os == 'linux' || os == 'mac') {
576576
sh "find log-output -name 'FAILED_*' -exec cp '{}' . ';'"
577-
sh "for i in logs log-output; do test -e \$i && mv \"\$i\" ${arch} || true; done"
577+
sh "for i in logs log-output; do test -e \"\$i\" && mv \"\$i\" ${arch} || true; done"
578578
}
579579
else if (os == 'windows') {
580580
bat "move logs ${arch}"
@@ -757,7 +757,7 @@ def testResilienceStep(os, engine, foxx) {
757757
}
758758
catch (exc) {
759759
if (os == 'linux' || os == 'mac') {
760-
sh "for i in build resilience/core* tmp; do test -e \$i && mv \"\$i\" ${arch} || true; done"
760+
sh "for i in build resilience/core* tmp; do test -e \"\$i\" && mv \"\$i\" ${arch} || true; done"
761761
}
762762

763763
archiveArtifacts allowEmptyArchive: true,
@@ -768,7 +768,7 @@ def testResilienceStep(os, engine, foxx) {
768768
}
769769
finally {
770770
if (os == 'linux' || os == 'mac') {
771-
sh "for i in log-output; do test -e \$i && mv \"\$i\" ${arch}; done"
771+
sh "for i in log-output; do test -e \"\$i\" && mv \"\$i\" ${arch}; done"
772772
}
773773
else if (os == 'windows') {
774774
bat "move log-output ${arch}"
@@ -858,7 +858,7 @@ def buildEdition(edition, os) {
858858
}
859859
finally {
860860
if (os == 'linux' || os == 'mac') {
861-
sh "for i in log-output; do test -e \$i && mv \"\$i\" ${arch} || true; done"
861+
sh "for i in log-output; do test -e \"\$i\" && mv \"\$i\" ${arch} || true; done"
862862
}
863863
else if (os == 'windows') {
864864
bat "move log-output ${arch}"

0 commit comments

Comments
 (0)
0