Add Jenkinsfile
All checks were successful
jenkins_organization/jenkins-pipeline/pipeline/head This commit looks good

This commit is contained in:
first_admin 2024-08-20 16:54:18 +00:00
commit a11083da9c

30
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,30 @@
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.."
'''
}
}
}
}