Dodanie 'Jenkinsfile'

This commit is contained in:
Jakub Zawłocki 2022-11-23 16:13:10 +01:00
parent 3acb57f4af
commit 9212b0508c

21
Jenkinsfile vendored Normal file
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....'
}
}
}
}