jenkins-pipeline/Jenkinsfile

30 lines
628 B
Plaintext
Raw Normal View History

2024-08-20 16:54:18 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2024-08-20 18:31:40 +00:00
echo "Building.. change8"
2024-08-20 16:54:18 +00:00
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.."
'''
}
}
}
}