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

30 lines
628 B
Groovy

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