Update 'Jenkinsfile'

This commit is contained in:
dany 2022-09-20 11:44:57 +02:00
parent 39edc1f2a0
commit f563dfc6cd

176
Jenkinsfile vendored
View File

@ -1,89 +1,89 @@
def build_appimage() def build_appimage()
{ {
sh ''' sh '''
set -e set -e
set -x set -x
cd $WORKSPACE cd $WORKSPACE
[ -d build ] && rm -rf build [ -d build ] && rm -rf build
mkdir build mkdir build
for tag in /var/jenkins_home/workspace/nightly-antosaio/build/frontend/*; do for file in /var/jenkins_home/workspace/nightly-antosaio/build/frontend/*; do
echo "Building for $arch version $tag" echo "Building for $arch version $tag"
./mkimage.sh $arch $tag ./mkimage.sh $arch $(basename $file)
done done
''' '''
} }
pipeline{ pipeline{
agent { node{ label'master' }} agent { node{ label'master' }}
options { options {
// Limit build history with buildDiscarder option: // Limit build history with buildDiscarder option:
// daysToKeepStr: history is only kept up to this many days. // daysToKeepStr: history is only kept up to this many days.
// numToKeepStr: only this many build logs are kept. // numToKeepStr: only this many build logs are kept.
// artifactDaysToKeepStr: artifacts are only kept up to this many days. // artifactDaysToKeepStr: artifacts are only kept up to this many days.
// artifactNumToKeepStr: only this many builds have their artifacts kept. // artifactNumToKeepStr: only this many builds have their artifacts kept.
buildDiscarder(logRotator(numToKeepStr: "1")) buildDiscarder(logRotator(numToKeepStr: "1"))
// Enable timestamps in build log console // Enable timestamps in build log console
timestamps() timestamps()
// Maximum time to run the whole pipeline before canceling it // Maximum time to run the whole pipeline before canceling it
timeout(time: 3, unit: 'HOURS') timeout(time: 3, unit: 'HOURS')
// Use Jenkins ANSI Color Plugin for log console // Use Jenkins ANSI Color Plugin for log console
ansiColor('xterm') ansiColor('xterm')
// Limit build concurrency to 1 per branch // Limit build concurrency to 1 per branch
disableConcurrentBuilds() disableConcurrentBuilds()
} }
stages stages
{ {
stage('Build AMD64') { stage('Build AMD64') {
agent { agent {
docker { docker {
image 'xsangle/ci-tools:latest-amd64' image 'xsangle/ci-tools:latest-amd64'
args '-v /var/jenkins_home/workspace/nightly-antosaio:/var/jenkins_home/workspace/nightly-antosaio' args '-v /var/jenkins_home/workspace/nightly-antosaio:/var/jenkins_home/workspace/nightly-antosaio'
reuseNode true reuseNode true
} }
} }
steps { steps {
script{ script{
env.arch = "amd64" env.arch = "amd64"
} }
build_appimage() build_appimage()
} }
} }
stage('Build ARM64') { stage('Build ARM64') {
agent { agent {
docker { docker {
image 'xsangle/ci-tools:latest-arm64' image 'xsangle/ci-tools:latest-arm64'
args '-v /var/jenkins_home/workspace/nightly-antosaio:/var/jenkins_home/workspace/nightly-antosaio' args '-v /var/jenkins_home/workspace/nightly-antosaio:/var/jenkins_home/workspace/nightly-antosaio'
reuseNode true reuseNode true
} }
} }
steps { steps {
script{ script{
env.arch = "arm64" env.arch = "arm64"
} }
build_appimage() build_appimage()
} }
} }
stage('Build ARM') { stage('Build ARM') {
agent { agent {
docker { docker {
image 'xsangle/ci-tools:latest-arm' image 'xsangle/ci-tools:latest-arm'
args '-v /var/jenkins_home/workspace/nightly-antosaio:/var/jenkins_home/workspace/nightly-antosaio' args '-v /var/jenkins_home/workspace/nightly-antosaio:/var/jenkins_home/workspace/nightly-antosaio'
reuseNode true reuseNode true
} }
} }
steps { steps {
script{ script{
env.arch = "arm" env.arch = "arm"
} }
build_appimage() build_appimage()
} }
} }
stage('Archive') { stage('Archive') {
steps { steps {
script { script {
archiveArtifacts artifacts: 'build/', fingerprint: true archiveArtifacts artifacts: 'build/', fingerprint: true
} }
} }
} }
} }
} }