All checks were successful
internetmastercz/test/pipeline/head This commit looks good
23 lines
478 B
Groovy
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}'
|
|
}
|
|
}
|
|
}
|
|
}
|