Files
release11-tools-mocked-serv…/Jenkinsfile
2020-09-30 09:53:11 +02:00

14 lines
259 B
Groovy
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

pipeline {
agent any
tools {
maven "Maven 3.6.3"
}
stages {
stage('Build') {
steps {
sh "docker context create DEV docker “host=ssh://jenkins@s5000xvn:22”"
}
}
}
}