Reduced to 64bits versions only

This commit is contained in:
Parra 2021-12-21 14:03:36 +01:00
parent 5839145583
commit 5960ce116c
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/arm64', 'linux/arm', 'linux/386'
values 'linux/amd64', 'linux/arm64'
}
}
stages {
@ -100,7 +100,7 @@ pipeline {
VERSION = '.' + (env.BRANCH_NAME).tokenize('/')[1]
}
IMAGES = ''
for (ARCH in ['linux/amd64', 'linux/arm64', 'linux/arm', 'linux/386']) {
for (ARCH in ['linux/amd64', 'linux/arm64']) {
IMAGES += ' -a ' + TARGET + ':' + ARCH.tokenize('/')[1] + VERSION
}
}