added jenkinsfile
pipeline / Test (push) Successful in 35s

This commit is contained in:
brb
2023-07-26 12:09:01 +02:00
parent 448f757bd1
commit 3d81eee094
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..'
}
}
}
}