Merge remote-tracking branch 'origin/master'

This commit is contained in:
s424548 2022-11-25 18:18:57 +01:00
commit 2c6fe9a79a

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