jenkins-pipeline/Jenkinsfile
first_admin a715bac9c2
All checks were successful
jenkins_organization/jenkins-pipeline/pipeline/head This commit looks good
Update Jenkinsfile
2024-08-20 18:52:41 +00:00

30 lines
629 B
Groovy

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