Skip to content

Commit

Permalink
Testing build stack only
Browse files Browse the repository at this point in the history
  • Loading branch information
roceb committed Jan 18, 2025
1 parent 82b8b14 commit f4e40e7
Showing 1 changed file with 76 additions and 76 deletions.
152 changes: 76 additions & 76 deletions pipelines/release/nightly_release.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -53,82 +53,82 @@ notify.wrap {
} // retry
} // stage

stage('eups publish') {
def pub = [:]

[eupsTag,
//'d_latest'
].each { tagName ->
pub[tagName] = {
retry(retries) {
util.runPublish(
parameters: [
EUPSPKG_SOURCE: 'git',
MANIFEST_ID: manifestId,
EUPS_TAG: tagName,
PRODUCTS: products,
BUILD_DOCS: true,
],
)
} // retry
} // pub
} // each

parallel pub
} // stage

util.waitForS3()

// NOOP / DRY_RUN
stage('git tag eups products') {
retry(retries) {
util.nodeWrap('docker') {
// needs eups distrib tag to be sync'd from s3 -> k8s volume
util.githubTagRelease(
options: [
'--dry-run': true,
'--org': scipipe.release_tag_org,
'--manifest': manifestId,
'--eups-tag': eupsTag,
],
args: [gitTag],
)
} // util.nodeWrap
} // retry
} // stage

// add aux repo tags *after* tagging eups product repos so as to avoid a
// trainwreck if an aux repo has been pulled into the build (without
// first being removed from the aux team).
stage('git tag auxilliaries') {
retry(retries) {
util.nodeWrap('docker') {
util.githubTagTeams(
options: [
'--dry-run': true,
'--org': scipipe.release_tag_org,
'--tag': gitTag,
],
)
} // util.nodeWrap
} // retry
} // stage

stage('build eups tarballs') {
util.buildTarballMatrix(
tarballConfigs: scipipe.tarball.build_config,
parameters: [
PRODUCTS: tarballProducts,
EUPS_TAG: eupsTag,
SMOKE: true,
RUN_SCONS_CHECK: true,
PUBLISH: true,
],
retries: retries,
)
} // stage

util.waitForS3()
// stage('eups publish') {
// def pub = [:]

// [eupsTag,
// //'d_latest'
// ].each { tagName ->
// pub[tagName] = {
// retry(retries) {
// util.runPublish(
// parameters: [
// EUPSPKG_SOURCE: 'git',
// MANIFEST_ID: manifestId,
// EUPS_TAG: tagName,
// PRODUCTS: products,
// BUILD_DOCS: true,
// ],
// )
// } // retry
// } // pub
// } // each

// parallel pub
// } // stage

// util.waitForS3()

// // NOOP / DRY_RUN
// stage('git tag eups products') {
// retry(retries) {
// util.nodeWrap('docker') {
// // needs eups distrib tag to be sync'd from s3 -> k8s volume
// util.githubTagRelease(
// options: [
// '--dry-run': true,
// '--org': scipipe.release_tag_org,
// '--manifest': manifestId,
// '--eups-tag': eupsTag,
// ],
// args: [gitTag],
// )
// } // util.nodeWrap
// } // retry
// } // stage

// // add aux repo tags *after* tagging eups product repos so as to avoid a
// // trainwreck if an aux repo has been pulled into the build (without
// // first being removed from the aux team).
// stage('git tag auxilliaries') {
// retry(retries) {
// util.nodeWrap('docker') {
// util.githubTagTeams(
// options: [
// '--dry-run': true,
// '--org': scipipe.release_tag_org,
// '--tag': gitTag,
// ],
// )
// } // util.nodeWrap
// } // retry
// } // stage

// stage('build eups tarballs') {
// util.buildTarballMatrix(
// tarballConfigs: scipipe.tarball.build_config,
// parameters: [
// PRODUCTS: tarballProducts,
// EUPS_TAG: eupsTag,
// SMOKE: true,
// RUN_SCONS_CHECK: true,
// PUBLISH: true,
// ],
// retries: retries,
// )
// } // stage

// util.waitForS3()

stage('build stack image') {
retry(retries) {
Expand Down

0 comments on commit f4e40e7

Please sign in to comment.