TakeCareApp/Jenkinsfile

10 lines
156 B
Plaintext
Raw Permalink Normal View History

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