Commit 70fcec5e authored by Raymond Knopp's avatar Raymond Knopp

adding test-boris-Jenkinsfile

Signed-off-by: default avatarRaymond Knopp <raymond.knopp@eurecom.fr>
parent 4a31c5b9
#!/bin/groovy
pipeline {
agent {
label 'caracal'
}
options {
disableConcurrentBuilds()
ansiColor('xterm')
}
stages {
stage ('Retrieve latest from branch') {
steps {
script {
checkout([$class: 'GitSCM', branches: [[name: '*/scheduled_pipeline']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://gitlab.eurecom.fr/oai/openairinterface5g.git']]])
sh "git clean -x -d -ff"
sh "git log -n1"
}
}
}
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment