mirror of
https://github.com/parrazam/radicale-docker.git
synced 2024-11-24 16:29:12 +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 {
|
axes {
|
||||||
axis {
|
axis {
|
||||||
name 'PLATFORM'
|
name 'PLATFORM'
|
||||||
values 'linux/amd64', 'linux/386', 'linux/arm64', 'linux/arm'
|
values 'linux/amd64', 'linux/arm64', 'linux/arm', 'linux/386'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
|
@ -100,7 +100,7 @@ pipeline {
|
||||||
VERSION = '.' + (env.BRANCH_NAME).tokenize('/')[1]
|
VERSION = '.' + (env.BRANCH_NAME).tokenize('/')[1]
|
||||||
}
|
}
|
||||||
IMAGES = ''
|
IMAGES = ''
|
||||||
for (ARCH in PLATFORM) {
|
for (ARCH in ['linux/amd64', 'linux/arm64', 'linux/arm', 'linux/386']) {
|
||||||
IMAGES += ' -a ' + TARGET + ':' + ARCH.tokenize('/')[1] + VERSION
|
IMAGES += ' -a ' + TARGET + ':' + ARCH.tokenize('/')[1] + VERSION
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue