mirror of
https://github.com/linuxserver/docker-heimdall.git
synced 2026-04-18 07:35:49 +09:00
Compare commits
5 Commits
js-710b63f
...
js-b452773
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
120996c9e9 | ||
|
|
497627bf1f | ||
|
|
c5600a4a45 | ||
|
|
e972541171 | ||
|
|
7ffefd21e1 |
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@@ -385,7 +385,9 @@ pipeline {
|
|||||||
// Build Docker container for push to LS Repo
|
// Build Docker container for push to LS Repo
|
||||||
stage('Build-Single') {
|
stage('Build-Single') {
|
||||||
when {
|
when {
|
||||||
environment name: 'MULTIARCH', value: 'false'
|
expression {
|
||||||
|
env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true'
|
||||||
|
}
|
||||||
environment name: 'EXIT_STATUS', value: ''
|
environment name: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
@@ -410,7 +412,10 @@ pipeline {
|
|||||||
// Build MultiArch Docker containers for push to LS Repo
|
// Build MultiArch Docker containers for push to LS Repo
|
||||||
stage('Build-Multi') {
|
stage('Build-Multi') {
|
||||||
when {
|
when {
|
||||||
environment name: 'MULTIARCH', value: 'true'
|
allOf {
|
||||||
|
environment name: 'MULTIARCH', value: 'true'
|
||||||
|
expression { params.PACKAGE_CHECK == 'false' }
|
||||||
|
}
|
||||||
environment name: 'EXIT_STATUS', value: ''
|
environment name: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
parallel {
|
parallel {
|
||||||
@@ -515,7 +520,7 @@ pipeline {
|
|||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
set -e
|
set -e
|
||||||
TEMPDIR=$(mktemp -d)
|
TEMPDIR=$(mktemp -d)
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
|
||||||
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
|
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
|
||||||
else
|
else
|
||||||
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
|
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
|
||||||
@@ -576,7 +581,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
echo "Packages were updated. Cleaning up the image and exiting."
|
echo "Packages were updated. Cleaning up the image and exiting."
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
|
||||||
docker rmi ${IMAGE}:amd64-${META_TAG}
|
docker rmi ${IMAGE}:amd64-${META_TAG}
|
||||||
else
|
else
|
||||||
docker rmi ${IMAGE}:${META_TAG}
|
docker rmi ${IMAGE}:${META_TAG}
|
||||||
@@ -600,7 +605,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
sh '''#! /bin/bash
|
sh '''#! /bin/bash
|
||||||
echo "There are no package updates. Cleaning up the image and exiting."
|
echo "There are no package updates. Cleaning up the image and exiting."
|
||||||
if [ "${MULTIARCH}" == "true" ]; then
|
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
|
||||||
docker rmi ${IMAGE}:amd64-${META_TAG}
|
docker rmi ${IMAGE}:amd64-${META_TAG}
|
||||||
else
|
else
|
||||||
docker rmi ${IMAGE}:${META_TAG}
|
docker rmi ${IMAGE}:${META_TAG}
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
alpine-baselayout-3.2.0-r8
|
alpine-baselayout-3.2.0-r8
|
||||||
alpine-keys-2.2-r0
|
alpine-keys-2.2-r0
|
||||||
apk-tools-2.12.5-r0
|
apk-tools-2.12.7-r0
|
||||||
bash-5.1.0-r0
|
bash-5.1.0-r0
|
||||||
brotli-libs-1.0.9-r3
|
brotli-libs-1.0.9-r3
|
||||||
busybox-1.32.1-r6
|
busybox-1.32.1-r6
|
||||||
c-ares-1.17.1-r1
|
c-ares-1.17.2-r0
|
||||||
ca-certificates-20191127-r5
|
ca-certificates-20191127-r5
|
||||||
ca-certificates-bundle-20191127-r5
|
ca-certificates-bundle-20191127-r5
|
||||||
coreutils-8.32-r2
|
coreutils-8.32-r2
|
||||||
libacl-2.2.53-r0
|
libacl-2.2.53-r0
|
||||||
libattr-2.4.48-r0
|
libattr-2.4.48-r0
|
||||||
libc-utils-0.7.2-r3
|
libc-utils-0.7.2-r3
|
||||||
libcrypto1.1-1.1.1k-r0
|
libcrypto1.1-1.1.1l-r0
|
||||||
libgcc-10.2.1_pre1-r3
|
libgcc-10.2.1_pre1-r3
|
||||||
libintl-0.20.2-r2
|
libintl-0.20.2-r2
|
||||||
libproc-3.3.16-r0
|
libproc-3.3.16-r0
|
||||||
libssl1.1-1.1.1k-r0
|
libssl1.1-1.1.1l-r0
|
||||||
libstdc++-10.2.1_pre1-r3
|
libstdc++-10.2.1_pre1-r3
|
||||||
libtls-standalone-2.9.1-r1
|
libtls-standalone-2.9.1-r1
|
||||||
linux-pam-1.5.1-r0
|
linux-pam-1.5.1-r0
|
||||||
@@ -24,8 +24,8 @@ musl-utils-1.2.2-r1
|
|||||||
ncurses-libs-6.2_p20210109-r0
|
ncurses-libs-6.2_p20210109-r0
|
||||||
ncurses-terminfo-base-6.2_p20210109-r0
|
ncurses-terminfo-base-6.2_p20210109-r0
|
||||||
nghttp2-libs-1.42.0-r1
|
nghttp2-libs-1.42.0-r1
|
||||||
nodejs-14.17.4-r0
|
nodejs-14.17.6-r0
|
||||||
npm-14.17.4-r0
|
npm-14.17.6-r0
|
||||||
procps-3.3.16-r0
|
procps-3.3.16-r0
|
||||||
readline-8.1.0-r0
|
readline-8.1.0-r0
|
||||||
s6-ipcserver-2.10.0.0-r0
|
s6-ipcserver-2.10.0.0-r0
|
||||||
|
|||||||
Reference in New Issue
Block a user