jenkins-pipeline/Jenkinsfile
jenkins 9a3c7a0ef7
All checks were successful
jenkins_organization/jenkins-pipeline/pipeline/head This commit looks good
Update Jenkinsfile
2024-08-20 17:51:47 +00:00

30 lines
628 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo "Building.. change5"
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.."
'''
}
}
}
}