TakeCareApp/Jenkinsfile

10 lines
153 B
Plaintext
Raw Normal View History

2020-11-27 15:46:47 +01:00
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
2020-11-27 19:19:57 +01:00
echo 'Testing...'
2020-11-27 15:46:47 +01:00
}
}
}
}