Update 'Jenkinsfile'

This commit is contained in:
Piotr Szkudlarek 2023-10-24 17:51:47 +02:00
parent a8becd1294
commit b7479d6178

21
Jenkinsfile vendored
View File

@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}