mirror of
https://github.com/parrazam/radicale-docker.git
synced 2024-11-24 13:09:11 +01:00
Added all x86 and arm platforms
This commit is contained in:
parent
382511f22a
commit
5839145583
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue