You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
702 B
Groovy
26 lines
702 B
Groovy
pipeline {
|
|
agent {
|
|
kubernetes {
|
|
label 'dind-agent'
|
|
cloud 'k8s-config'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage("build image") {
|
|
steps {
|
|
script {
|
|
def image = "swr.eu-de.otc.t-systems.com/omnia-test/test-build:${env.BUILD_NUMBER}"
|
|
echo "FOO is ${env.BUILD_NUMBER}"
|
|
sh """
|
|
image="swr.eu-de.otc.t-systems.com/omnia-test/test-build:latest"
|
|
docker login \$PASS swr.eu-de.otc.t-systems.com
|
|
docker build -t ${image} .
|
|
docker push ${image}
|
|
"""
|
|
}
|
|
milestone(1)
|
|
}
|
|
}
|
|
}
|
|
} |