Merge branch 'main' of github.com:sartography/spiff-arena

This commit is contained in:
jasquat 2023-05-15 11:54:40 -04:00
commit f33f919962
No known key found for this signature in database
1 changed files with 8 additions and 6 deletions

14
Jenkinsfile vendored
View File

@ -49,12 +49,14 @@ pipeline {
stages { stages {
stage('Prep') { stage('Prep') {
steps { script { steps { script {
def jobMetaJson = new JsonBuilder([ dir("spiffworkflow-${params.COMPONENT}") {
git_commit: env.GIT_COMMIT.take(7), def jobMetaJson = new JsonBuilder([
git_branch: env.GIT_BRANCH, git_commit: env.GIT_COMMIT.take(7),
build_id: env.BUILD_ID, git_branch: env.GIT_BRANCH,
]).toPrettyString() build_id: env.BUILD_ID,
sh "echo '${jobMetaJson}' > version_info.json" ]).toPrettyString()
sh "echo '${jobMetaJson}' > version_info.json"
}
} } } }
} }