jenkins-pipeline/Jenkinsfile
first_admin a11083da9c
All checks were successful
jenkins_organization/jenkins-pipeline/pipeline/head This commit looks good
Add Jenkinsfile
2024-08-20 16:54:18 +00:00

30 lines
620 B
Groovy

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.."
'''
}
}
}
}