Commit 3e5deb43 authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): after code review

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 187b3915
......@@ -289,7 +289,7 @@ pipeline {
when { expression {do4Gtest} }
steps {
script {
triggerSlaveJob ('RAN-LTE-FDD-LTEBOX-Container', 'LTE-B200-FDD-Mono-LTEBOX-Container')
triggerSlaveJob ('RAN-LTE-FDD-LTEBOX-Container', 'RAN-LTE-FDD-LTEBOX-Container')
}
}
post {
......@@ -306,10 +306,10 @@ pipeline {
}
}
stage ("LTE-B200-TDD-LTEBOX-Container") {
when { expression {do4Gtest || do5Gtest} }
when { expression {do4Gtest} }
steps {
script {
triggerSlaveJob ('RAN-LTE-TDD-LTEBOX-Container', 'LTE-B200-TDD-Mono-LTEBOX-Container')
triggerSlaveJob ('RAN-LTE-TDD-LTEBOX-Container', 'RAN-LTE-TDD-LTEBOX-Container')
}
}
post {
......
......@@ -246,7 +246,7 @@ class SSHConnection():
count = 10
copy_status = True
elif scp_response == 1 and ignorePermDenied:
logging.warning('Copy was denied but ignored!')
logging.warning(f'copyout(): permission denied, not copying file ({source})')
count = 10
copy_status = True
else:
......@@ -258,7 +258,7 @@ class SSHConnection():
count = 10
copy_status = True
elif scp_response == 1 and ignorePermDenied:
logging.warning('Copy was denied but ignored!')
logging.warning(f'copyout(): permission denied, not copying file ({source})')
count = 10
copy_status = True
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment