ant-http/Jenkinsfile

63 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-08-02 16:39:40 +02:00
def build_antd()
{
2022-08-02 17:32:42 +02:00
docker.image("xsangle/ci-tools:latest-" + env.arch).withRun('''
2022-08-02 17:20:29 +02:00
printenv
uname -a
2022-08-02 17:32:42 +02:00
''')
2022-08-02 17:08:01 +02:00
}
2022-08-02 16:39:40 +02:00
}
2022-08-01 12:01:13 +02:00
pipeline{
agent { node{ label'master' }}
options {
// Limit build history with buildDiscarder option:
// daysToKeepStr: history is only kept up to this many days.
// numToKeepStr: only this many build logs are kept.
// artifactDaysToKeepStr: artifacts are only kept up to this many days.
// artifactNumToKeepStr: only this many builds have their artifacts kept.
buildDiscarder(logRotator(numToKeepStr: "1"))
// Enable timestamps in build log console
timestamps()
// Maximum time to run the whole pipeline before canceling it
timeout(time: 1, unit: 'HOURS')
// Use Jenkins ANSI Color Plugin for log console
ansiColor('xterm')
// Limit build concurrency to 1 per branch
disableConcurrentBuilds()
}
stages
{
2022-08-02 16:39:40 +02:00
stage('Build AMD64') {
steps {
script{
2022-08-02 17:20:29 +02:00
env.arch = "arm64"
2022-08-02 16:39:40 +02:00
}
2022-08-02 17:08:01 +02:00
build_antd()
2022-08-02 16:39:40 +02:00
}
}
stage('Build ARM64') {
2022-08-01 12:01:13 +02:00
steps {
2022-08-02 16:39:40 +02:00
script{
env.arch = "arm64"
}
2022-08-02 17:08:01 +02:00
build_antd()
2022-08-02 16:39:40 +02:00
}
}
stage('Build ARM') {
steps {
script{
env.arch = "arm"
}
2022-08-02 17:08:01 +02:00
build_antd()
2022-08-02 16:39:40 +02:00
}
}
stage("Archive") {
steps{
2022-08-01 12:10:24 +02:00
script {
2022-08-02 09:22:51 +02:00
archiveArtifacts artifacts: 'build/', fingerprint: true, onlyIfSuccessful: true
2022-08-01 12:10:24 +02:00
}
2022-08-01 12:01:13 +02:00
}
}
}
}