jenkins-pipeline/Jenkinsfile
jenkins ec91fccfe2
All checks were successful
jenkins_organization/jenkins-pipeline/pipeline/head This commit looks good
Update Jenkinsfile
2024-08-20 17:39:00 +00:00

30 lines
628 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo "Building.. change2"
sh '''
echo "doing build stuff.."
'''
}
}
stage('Test') {
steps {
echo "Testing.."
sh '''
echo "doing test stuff.."
'''
}
}
stage('Deliver') {
steps {
echo 'Deliver....'
sh '''
echo "doing delivery stuff.."
'''
}
}
}
}