Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a post build stage #739

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 40 additions & 1 deletion pipelines/build/common/build_base_file.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,40 @@ class Builder implements Serializable {

return true
}
/*
Call job to do post task. For now enable sbom sign
*/
def postStage() {
context.stage('post-build') {
//Job name need to discuss
context.println "Post build - parallel post tasks, e.g. sbom sign"
def postBuildJob = context.build job: 'Sophia_pipeline',
parameters: [
context.string(name: 'UPSTREAM_JOB_NAME', value: env.JOB_NAME),
context.string(name: 'UPSTREAM_JOB_NUMBER', value: "${currentBuild.getNumber()}")
]
context.node('worker') {
// Remove any previous workspace artifacts
context.sh 'rm -rf *.json || true'
context.copyArtifacts(
projectName: 'Sophia_pipeline',
selector: context.specific("${postBuildJob.getNumber()}"),
filter: '*.json',
fingerprintArtifacts: true,
target: 'sbom/',
flatten: true)

// Archive signed sbom in Jenkins
try {
context.timeout(time: pipelineTimeouts.ARCHIVE_ARTIFACTS_TIMEOUT, unit: 'HOURS') {
context.archiveArtifacts artifacts: "sbom/*.json"
}
} catch (FlowInterruptedException e) {
throw new Exception("[ERROR] Archive artifact timeout (${pipelineTimeouts.ARCHIVE_ARTIFACTS_TIMEOUT} HOURS) for Sophia_pipeline has been reached. Exiting...")
}
}
}
}

/*
Call job to push artifacts to github. Usually it's only executed on a nightly build
Expand Down Expand Up @@ -933,7 +967,12 @@ class Builder implements Serializable {
}
}
context.parallel jobs


try {
postStage()
} catch (Exception e) {
context.println(e.message)
}
// publish to github if needed
// Don't publish release automatically
if (publish && !release) {
Expand Down
62 changes: 62 additions & 0 deletions tools/post-build/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
NODE_LABEL = 'dockerBuild&&linux&&x64&&gpgsign'

pipeline {
agent none
parameters {
string(name: 'UPSTREAM_JOB_NAME', defaultValue: '', description: 'Pipeline job with sbom files')
string(name: 'UPSTREAM_JOB_NUMBER', defaultValue: '', description: 'Pipeline job number')

}
stages {
stage('Post-Build') {
parallel {
stage('sbomSign') {
agent {
label NODE_LABEL
}
steps {
sbomSign()
}
}
}
}
}
}

def sbomSign() {
cleanWs()
docker.image('adoptopenjdk/centos7_build_image').inside {
checkout scm
checkout([$class: 'GitSCM', branches: [[name: 'master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: "sbomSign"]], submoduleCfg: [], userRemoteConfigs: [[url: "https://github.com/adoptium/temurin-build.git"]]])
copyArtifacts excludes: '**/OpenJDK*-sbom*metadata.json',
filter: '**/OpenJDK*-sbom*.json',
fingerprintArtifacts: true,
flatten: true,
projectName: "${params.UPSTREAM_JOB_NAME}",
target: 'sbom/',
selector: specific("${params.UPSTREAM_JOB_NUMBER}")
withCredentials([file(credentialsId: 'adoptium-artifactory-gpg-key', variable: 'PRIVATE_GPG_KEY')]) {
withEnv(['PRIVATE_GPG_KEY='+${PRIVATE_GPG_KEY}]) {
script {
dir("sbomSign/cyclonedx-lib") {
sh label: 'build-sign-sbom', script: '''
JAVA_HOME=/usr/lib/jvm/jdk-17 ant clean
JAVA_HOME=/usr/lib/jvm/jdk-17 ant build-sign-sbom
'''
}
def sbomFiles = findFiles(glob: "**/OpenJDK*-sbom*.json")
for (def sbomFile: sbomFiles) {
def sbomFileName = sbomFile.path
def classPath = "sbomSign/cyclonedx-lib/build/jar/*"
sh label: 'sign-sbom', script: """
/usr/lib/jvm/jdk-17/bin/java -cp "${classPath}" temurin.sbom.TemurinSignSBOM --signSBOM --jsonFile ${sbomFileName} --privateKeyFile ./sbomSign/cyclonedx-lib/testPrivateFile
/usr/lib/jvm/jdk-17/bin/java -cp "${classPath}" temurin.sbom.TemurinSignSBOM --verifySignature --jsonFile ${sbomFileName} --publicKeyFile ./sbomSign/cyclonedx-lib/publicPemFile
"""
}
}
}// some block
}

archiveArtifacts artifacts: "**/OpenJDK*-sbom*.json"
}
}