ium_434788/Jenkinsfile_dvc
Dominik Strzako b77042df83 dvc jenkins
2021-06-08 00:28:23 +02:00

17 lines
349 B
Plaintext

pipeline {
agent {docker { image 'snowycocoon/ium_434788:3'}}
stages {
stage('Test') {
steps {
sh 'echo hi'
}
}
}
post {
success {
mail body: 'SUCCESS',
subject: 's434788 DVC',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}