Adds Jenkinsfile

pull/3/head
unizar 2023-07-19 15:54:13 +02:00
parent adfc3f2617
commit aa5563b0aa
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Jenkinsfile for ogagent'
}
}
}
}