Files
test/Jenkinsfile
Jan Rabcan b05f05f04b
All checks were successful
internetmastercz/test/pipeline/head This commit looks good
bad quotes.
2021-10-11 12:29:44 +02:00

23 lines
478 B
Groovy

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