antosaio/Jenkinsfile

72 lines
2.5 KiB
Plaintext
Raw Normal View History

2022-08-05 11:21:58 +02:00
def remote = [:]
remote.name = 'workstation'
remote.host = 'workstation'
remote.user = 'dany'
remote.identityFile = '/var/jenkins_home/.ssh/id_rsa'
remote.allowAnyHosts = true
remote.agent = false
remote.logLevel = 'INFO'
pipeline{
agent { node{ label'master' }}
2022-08-05 11:34:26 +02:00
//parameters {
// string(defaultValue: "xsangle", name: 'dockerhub_user', description: 'Docker hub username')
// string(defaultValue: "", name: 'dockerhub_pat', description: 'Docker hub Personal Access Token')
//}
2022-08-05 11:21:58 +02:00
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-09-16 13:39:50 +02:00
stage('Build latest') {
2022-08-05 11:21:58 +02:00
steps {
sshCommand remote: remote, command: '''
set -e
2022-08-05 11:23:18 +02:00
export WORKSPACE=$(realpath "./jenkins/workspace/antosaio-docker")
2022-08-05 11:21:58 +02:00
cd $WORKSPACE
2022-09-16 13:56:24 +02:00
[ -d antos ] && rm -rf antos
2022-08-05 11:52:17 +02:00
mkdir antos
cp /var/jenkins_home/workspace/nightly-antosaio/build/* antos -rf
2022-08-05 11:59:02 +02:00
tree antos
2022-08-05 11:21:58 +02:00
docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64
2022-08-05 12:23:17 +02:00
docker buildx build \
--push \
2022-09-16 13:39:50 +02:00
--build-arg tag=latest \
2022-08-05 12:23:17 +02:00
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
--tag xsangle/antosaio:latest .
2022-08-05 11:21:58 +02:00
'''
}
}
2022-09-16 13:39:50 +02:00
stage('Build devel') {
steps {
sshCommand remote: remote, command: '''
set -e
export WORKSPACE=$(realpath "./jenkins/workspace/antosaio-docker")
cd $WORKSPACE
2022-09-16 13:56:24 +02:00
[ -d antos ] && rm -rf antos
2022-09-16 13:39:50 +02:00
mkdir antos
cp /var/jenkins_home/workspace/nightly-antosaio/build/* antos -rf
tree antos
docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64
docker buildx build \
--push \
--build-arg tag=devel \
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
--tag xsangle/antosaio:devel .
'''
}
}
2022-08-05 11:21:58 +02:00
}
}