Skip to content

Commit

Permalink
List all the VOs at the info endpoint when the sa serves multiple VOs (
Browse files Browse the repository at this point in the history
  • Loading branch information
enricovianello authored Nov 4, 2022
1 parent 6d20516 commit 7e04e80
Show file tree
Hide file tree
Showing 8 changed files with 519 additions and 181 deletions.
30 changes: 6 additions & 24 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
@Library('sd')_
def kubeLabel = getKubeLabel()

pipeline {

agent {
kubernetes {
label "${kubeLabel}"
cloud 'Kube mwdevel'
defaultContainer 'jnlp'
inheritFrom 'ci-template'
}
}

agent { label 'java11' }

options {
buildDiscarder(logRotator(numToKeepStr: '5'))
timeout(time: 1, unit: 'HOURS')
Expand All @@ -23,36 +13,28 @@ pipeline {

stage('build') {
steps {
container('runner') {
sh 'mvn -B clean compile'
}
sh 'mvn -B clean compile'
}
}

stage('test') {
steps {
container('runner') {
sh 'mvn -B clean test'
}
sh 'mvn -B clean test'
script {
currentBuild.result = 'SUCCESS'
}
}

post {
always {
container('runner') {
junit '**/target/surefire-reports/TEST-*.xml'
}
junit '**/target/surefire-reports/TEST-*.xml'
}
}
}

stage('package') {
steps {
container('runner') {
sh 'mvn -B -DskipTests=true clean package'
}
sh 'mvn -B -DskipTests=true clean package'
}
}
}
Expand Down
Loading

0 comments on commit 7e04e80

Please sign in to comment.