jenkins-project/Jenkinsfile

31 lines
621 B
Plaintext
Raw Normal View History

2024-08-19 21:30:54 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo "Building.."
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.."
'''
}
}
}
}