Add Jenkinsfile

This commit is contained in:
marcelhariton 2023-05-09 13:41:21 +03:00
parent c73419abb7
commit 88e738fef7

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