ci-image/Jenkinsfile

43 lines
1.5 KiB
Plaintext
Raw Normal View History

2022-08-02 14:32:16 +02:00
pipeline{
agent { node{ label'workstation' }}
2022-08-02 14:32:16 +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
{
stage('Build') {
steps {
2022-09-29 19:15:39 +02:00
sh'''#!/bin/bash
2022-08-02 14:32:16 +02:00
set -e
2022-08-07 00:16:32 +02:00
set -x
2022-08-02 14:32:16 +02:00
cd $WORKSPACE
2022-08-02 23:33:54 +02:00
# docker rmi -f $(docker images -f "dangling=true" -q)
2024-03-09 22:51:39 +01:00
# docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64
2022-08-07 00:21:26 +02:00
for arch in arm arm64 amd64; do
2022-08-07 00:07:50 +02:00
echo "build for architecture $arch"
2022-08-07 00:19:24 +02:00
arch_name="${arch////-}"
2022-08-02 14:47:39 +02:00
docker buildx build \
--platform $arch \
2022-08-07 00:18:24 +02:00
--output "type=docker,push=false,name=xsangle/ci-tools:latest-$arch_name" \
2022-08-02 14:47:39 +02:00
.
2024-03-09 22:33:30 +01:00
# docker tag xsangle/ci-tools:latest-$arch_name workstation:5000/xsangle/ci-tools:latest-$arch_name
# docker push workstation:5000/xsangle/ci-tools:latest-$arch_name
2022-08-02 14:47:39 +02:00
done
2022-08-02 14:32:16 +02:00
'''
}
}
}
2022-08-02 14:26:51 +02:00
}