Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #39 from docker/2.3.0-a103-u42-w12-p16
2.3.0 a103 u42 w12 p16
chubing committed May 2, 2018
2 parents 998429f + c369a62 commit e2f959c
Showing 2 changed files with 20 additions and 4 deletions.
22 changes: 19 additions & 3 deletions Jenkinsfile
@@ -21,12 +21,28 @@ pipeline {
echo "You must define an imagename in common.bash"
currentBuild.result = 'FAILURE'
}
}
sh 'mkdir -p bin'
sh 'mkdir -p tmp'
dir('tmp'){
git([ url: "https://github.internet2.edu/docker/util.git", credentialsId: "jenkins-github-access-token" ])
sh 'ls'
sh 'mv bin/* ../bin/.'
}
}
}
}
stage('Build') {
steps {
echo 'step 2'
script {
try{
sh 'bin/destroy.sh >> debug'
} catch(error) {
def error_details = readFile('./debug');
def message = "BUILD ERROR: There was a problem building the Base Image. \n\n ${error_details}"
sh "rm -f ./debug"
handleError(message)
}
}
}
}
stage('Push') {
@@ -48,7 +64,7 @@ pipeline {
}
post {
always {
echo 'I will always say Hello again!'
echo 'Done Building.'
}
failure {
// slackSend color: 'good', message: "Build failed"
2 changes: 1 addition & 1 deletion container_files/grouper.installer.properties
@@ -16,7 +16,7 @@ grouperInstaller.default.installOrUpgrade = install

grouperInstaller.autorun.installAllPatches = false
grouperInstaller.autorun.installPatchesUpToACertainPatchLevel = true
grouperInstaller.autorun.installPatchesUpToThesePatchLevels = grouper_v2_3_0_api_patch_103,grouper_v2_3_0_ui_patch_42,grouper_v2_3_0_ws_patch_11,grouper_v2_3_0_pspng_patch_16
grouperInstaller.autorun.installPatchesUpToThesePatchLevels = grouper_v2_3_0_api_patch_104,grouper_v2_3_0_ui_patch_42,grouper_v2_3_0_ws_patch_12,grouper_v2_3_0_pspng_patch_16

#### set this to true to try to use defaults for everything. Only things without default values will need to be set
grouperInstaller.autorun.useDefaultsAsMuchAsAvailable = true

0 comments on commit e2f959c

Please sign in to comment.