Files
test/Jenkinsfile
Jan Rabcan 9e1dc74df6
All checks were successful
test/pipeline/head This commit looks good
echo jenkinsfile.
2021-10-11 11:49:38 +02:00

23 lines
427 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....'
}
}
}
}