Files
test/Jenkinsfile
Jan Rabcan 9a33dfa882
All checks were successful
internetmastercz/test/pipeline/pr-feature/Feature-1 This commit looks good
internetmastercz/test/pipeline/head This commit looks good
added test sleep.
2021-10-11 12:32:04 +02:00

25 lines
549 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
echo 'Building..'
}
}
stage('Test') {
steps {
echo "start Testing"
sh 'sleep 5'
echo "finish Testing"
}
}
stage('Deploy') {
steps {
echo "Deploying.... ${env.ENV_REGISTRY_URL} - ${env.ENV_REGISTRY_USER}"
}
}
}
}