Added all x86 and arm platforms

This commit is contained in:
Parra 2021-12-21 13:21:00 +01:00
parent 382511f22a
commit 5839145583
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -35,7 +35,7 @@ pipeline {
axes {
axis {
name 'PLATFORM'
values 'linux/amd64', 'linux/386', 'linux/arm64', 'linux/arm'
values 'linux/amd64', 'linux/arm64', 'linux/arm', 'linux/386'
}
}
stages {
@ -100,7 +100,7 @@ pipeline {
VERSION = '.' + (env.BRANCH_NAME).tokenize('/')[1]
}
IMAGES = ''
for (ARCH in PLATFORM) {
for (ARCH in ['linux/amd64', 'linux/arm64', 'linux/arm', 'linux/386']) {
IMAGES += ' -a ' + TARGET + ':' + ARCH.tokenize('/')[1] + VERSION
}
}