test-python-scripts
Nicolas Arenas 2024-09-27 18:08:09 +02:00
parent b78e6eb623
commit ce6fe2e749
1 changed files with 7 additions and 5 deletions

12
client/Jenkinsfile vendored
View File

@ -3,17 +3,19 @@ pipeline {
label "jenkins-slave"
}
stages {
dir ('client/') {
stage('Start') {
stage('Start') {
dir ('client/') {
steps {
echo 'Jenkinsfile for opengnsys'
}
}
stage('List files') {
}
stage('List files') {
dir ('client/') {
steps {
sh 'ls -la'
}
}
}
}
}
}
}