This commit is contained in:
2025-09-07 09:19:43 -05:00
parent a63d9e3e65
commit 6be45728bd
4 changed files with 25 additions and 28 deletions

4
Jenkinsfile vendored
View File

@@ -18,7 +18,7 @@ pipeline {
stage('build docker image') {
matrix {
axes {
axis { name 'DISTRO'; values 'ubuntu-24.04', 'fedora-42', 'debian-13', 'archlinux-latest' }
axis { name 'DISTRO'; values 'ubuntu', 'fedora', 'debian', 'arch' }
}
stages {
stage('build multiarch image') {
@@ -52,7 +52,7 @@ pipeline {
matrix {
axes {
axis { name 'ARCH'; values 'armv8-a', 'x86-64-v3' }
axis { name 'DISTRO'; values 'ubuntu-24.04', 'fedora-42', 'debian-13', 'archlinux-latest' }
axis { name 'DISTRO'; values 'ubuntu', 'fedora', 'debian', 'arch' }
axis { name 'OPT_LTO'; values 'OPT=0 LTO=OFF', 'OPT=3 LTO=ON' }
axis { name 'STATIC'; values 'ON', 'OFF' }
}