add Jenkinsfile

This commit is contained in:
Aneta Tlałka 2023-10-24 17:50:54 +02:00
parent 37a5cdb910
commit f6e54ca0ea

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