jenkins-pipelines/pipelines/parts/build-docker-base.Jenkinsfile

63 lines
1.2 KiB
Plaintext

// vim: syn=groovy
//
// Copyright (c) 2022 Wind River Systems, Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
library "common@${params.JENKINS_SCRIPTS_BRANCH}"
setBuildDescr()
pipeline {
agent any
options {
timestamps()
}
parameters {
string (
name: 'MASTER_JOB_NAME'
)
string (
name: 'MASTER_BUILD_NUMBER'
)
string (
name: 'JENKINS_SCRIPTS_BRANCH'
)
string (
name: 'BUILD_HOME'
)
string (
name: 'TIMESTAMP'
)
booleanParam (
name: 'DRY_RUN'
)
booleanParam (
name: 'SHELL_XTRACE'
)
booleanParam (
name: 'PUSH_DOCKER_IMAGES',
)
booleanParam (
name: 'USE_DOCKER_CACHE',
)
string (
name: 'BUILD_STREAM'
)
}
stages {
stage ("build-docker-base") {
steps {
sh ("${Constants.SCRIPTS_DIR}/build-docker-base.sh")
}
}
}
post {
cleanup {
cleanupPartJob (logLabel: params.BUILD_STREAM)
}
}
}