Add Jenkinsfile
Opengnsys/prueba/pipeline/head There was a failure building this commit Details

main
unizar 2023-07-17 12:44:49 +02:00
parent da473a2a05
commit 854c6fabb5
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored 100644
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Hello, World!'
}
}
}
}