Skip to content

Commit

Permalink
changed how tgz file is being copied to the s3 bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
Natalie Roberts authored and Natalie Roberts committed Dec 7, 2018
1 parent f528d16 commit f83cae1
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions scripts/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,26 +64,7 @@ node ("ossim-build") {
}
stage("Deliver Artifacts"){
dir("${env.WORKSPACE}/ossim-csm-plugin"){

step([$class: 'S3BucketPublisher',
dontWaitForConcurrentBuildCompletion: false,
entries: [
[bucket: "o2-delivery/${OSSIM_GIT_BRANCH}/ossim",
excludedFile: '',
flatten: false,
gzipFiles: false,
keepForever: false,
managedArtifacts: false,
noUploadOnFailure: false,
selectedRegion: 'us-east-1',
showDirectlyInBrowser: true,
sourceFile: "*.tgz",
storageClass: 'STANDARD',
uploadFromSlave: false,
useServerSideEncryption: false]],

profileName: 'o2-cicd',
userMetadata: []])
sh "aws s3 cp ossim-csm-plugin-install.tgz s3://o2-delivery/${OSSIM_GIT_BRANCH}/ossim/ossim-csm-plugin-install.tgz"
}
}
}
Expand Down

0 comments on commit f83cae1

Please sign in to comment.