Skip to content

Commit

Permalink
Fix typo in jenkinsfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
rileykk committed Dec 16, 2024
1 parent daaff9b commit fa87a6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/jenkins/build-test-deploy/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pipeline {
}
parameters {
// TODO: update default value as newer PGE's are added
string(name: 'DOCKER_IMAGE_SUFFIXES', defaultValue: 'dswx_hls,cslc_s1,rtc_s1,dswx_s1,disp_s1,dswx_ni,dist-s1',
string(name: 'DOCKER_IMAGE_SUFFIXES', defaultValue: 'dswx_hls,cslc_s1,rtc_s1,dswx_s1,disp_s1,dswx_ni,dist_s1',
description: 'Comma-delimited list of PGE names to include for build/test/deploy')
booleanParam(name: 'PUBLISH_DOCS', defaultValue: true,
description: 'Publish sphinx documentation to ghpages')
Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/build-test/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pipeline {
environment {
DOCKER_IMAGE_PREFIX = 'opera_pge'
// TODO: update as newer PGE's are added
DOCKER_IMAGE_SUFFIXES = 'dswx_hls,cslc_s1,rtc_s1,dswx_s1,disp_s1,dswx_ni,dist-s1'
DOCKER_IMAGE_SUFFIXES = 'dswx_hls,cslc_s1,rtc_s1,dswx_s1,disp_s1,dswx_ni,dist_s1'
DOCKER_TAG = """${sh(
returnStdout: true,
script: 'echo ${GIT_BRANCH##*/}-build-test-$$'
Expand Down

0 comments on commit fa87a6d

Please sign in to comment.