Commit c29da837 authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): fix typo in main pipeline

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 300af2c5
...@@ -246,12 +246,8 @@ pipeline { ...@@ -246,12 +246,8 @@ pipeline {
script { script {
triggerSlaveJob ('RAN-DockerHub-Push', 'Push-to-Docker-Hub') triggerSlaveJob ('RAN-DockerHub-Push', 'Push-to-Docker-Hub')
} }
post {
always {
script {
echo "Push to Docker-Hub OK"
}
} }
post {
failure { failure {
script { script {
echo "Push to Docker-Hub KO" echo "Push to Docker-Hub KO"
...@@ -261,7 +257,6 @@ pipeline { ...@@ -261,7 +257,6 @@ pipeline {
} }
} }
} }
}
post { post {
always { always {
script { script {
......
...@@ -227,6 +227,8 @@ class Containerize(): ...@@ -227,6 +227,8 @@ class Containerize():
if result is not None: if result is not None:
forceSharedImageBuild = True forceSharedImageBuild = True
sharedTag = 'ci-temp' sharedTag = 'ci-temp'
else:
forceSharedImageBuild = True
# Let's remove any previous run artifacts if still there # Let's remove any previous run artifacts if still there
mySSH.command(self.cli + ' image prune --force', '\$', 30) mySSH.command(self.cli + ' image prune --force', '\$', 30)
......
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