Compare commits

..
1 Commits
Author SHA1 Message Date
brb 3d81eee094 added jenkinsfile
pipeline / Test (push) Successful in 35s
2023-07-26 12:09:01 +02:00
Vendored
+21
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..'
}
}
}
}