blob: 89eef34e51f8979e4fc18e7cd1f907b646668a27 [file] [log] [blame]
/* docker-publish pipeline */
pipeline {
/* no label, executor is determined by JJB */
agent {
label "${params.executorNode}"
}
stages {
stage('checkout') {
steps {
checkout([
$class: 'GitSCM',
userRemoteConfigs: [[
url: "${params.gitUrl}",
name: "${params.GERRIT_PATCHSET_REVISION}",
]],
extensions: [
[$class: 'WipeWorkspace'],
[$class: 'RelativeTargetDirectory', relativeTargetDir: "${params.GERRIT_PROJECT}"],
[$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
],
])
script {
def git_tags={ shell "git tag -l --points-at HEAD" }
}
}
}
stage('build'){
steps {
sh """
#!/usr/bin/env bash
set -eu -o pipefail
# checked out in a subdir so the log can be in WORKSPACE
cd "$GERRIT_PROJECT"
export DOCKER_REPOSITORY="$dockerRepo/"
# Build w/branch
echo "Building image with branch"
make DOCKER_TAG="$GERRIT_BRANCH" docker-build 2>&1 | tee > "$WORKSPACE/docker-build.log"
# Build w/tags if they exist
if [ -n "$git_tags" ]
then
for tag in $git_tags
do
echo "Building image with tag (should reuse cached layers)"
make DOCKER_TAG="$tag" docker-build
done
fi
"""
}
}
stage('push'){
steps {
script {
withDockerRegistry([credentialsId: 'docker-artifact-push-credentials']) {
sh """
#!/usr/bin/env bash
set -eu -o pipefail
# checked out in a subdir so the log can be in WORKSPACE
cd "$GERRIT_PROJECT"
export DOCKER_REPOSITORY="$dockerRepo/"
# Push w/branch
echo "Pushing image with branch"
make DOCKER_TAG="$GERRIT_BRANCH" docker-push 2>&1 | tee > "$WORKSPACE/docker-push.log"
# Push w/tags if they exist
if [ -n "$git_tags" ]
then
for tag in $git_tags
do
echo "Pushing image with tag (should reuse cached layers)"
make DOCKER_TAG="$tag" docker-push
done
fi
"""
}
}
}
}
}
post {
always {
archiveArtifacts artifacts: 'docker-build.log', fingerprint: true
deleteDir()
}
}
}