Compare commits

...

2 Commits

Author SHA1 Message Date
LinuxServer-CI
f4a007294b Bot Updating Package Versions 2021-08-29 09:58:27 +02:00
LinuxServer-CI
1b537c40f4 Bot Updating Templated Files 2021-08-29 09:56:34 +02:00
2 changed files with 16 additions and 11 deletions

15
Jenkinsfile vendored
View File

@@ -385,7 +385,9 @@ pipeline {
// Build Docker container for push to LS Repo
stage('Build-Single') {
when {
environment name: 'MULTIARCH', value: 'false'
expression {
env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true'
}
environment name: 'EXIT_STATUS', value: ''
}
steps {
@@ -410,7 +412,10 @@ pipeline {
// Build MultiArch Docker containers for push to LS Repo
stage('Build-Multi') {
when {
environment name: 'MULTIARCH', value: 'true'
allOf {
environment name: 'MULTIARCH', value: 'true'
expression { params.PACKAGE_CHECK == 'false' }
}
environment name: 'EXIT_STATUS', value: ''
}
parallel {
@@ -515,7 +520,7 @@ pipeline {
sh '''#! /bin/bash
set -e
TEMPDIR=$(mktemp -d)
if [ "${MULTIARCH}" == "true" ]; then
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
else
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
@@ -576,7 +581,7 @@ pipeline {
steps {
sh '''#! /bin/bash
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}
else
docker rmi ${IMAGE}:${META_TAG}
@@ -600,7 +605,7 @@ pipeline {
steps {
sh '''#! /bin/bash
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}
else
docker rmi ${IMAGE}:${META_TAG}

View File

@@ -38,25 +38,25 @@ ncurses-libs-6.2_p20200523-r0
ncurses-terminfo-base-6.2_p20200523-r0
nghttp2-libs-1.41.0-r0
nginx-1.18.0-r3
openssl-1.1.1k-r0
openssl-1.1.1l-r0
pcre-8.44-r0
pcre2-10.35-r0
php7-7.3.29-r0
php7-common-7.3.29-r0
php7-ctype-7.3.29-r0
php7-ctype-7.3.30-r0
php7-fileinfo-7.3.29-r0
php7-fpm-7.3.29-r0
php7-json-7.3.29-r0
php7-mbstring-7.3.29-r0
php7-openssl-7.3.29-r0
php7-pdo-7.3.29-r0
php7-pdo_sqlite-7.3.29-r0
php7-pdo-7.3.30-r0
php7-pdo_sqlite-7.3.30-r0
php7-session-7.3.29-r0
php7-simplexml-7.3.29-r0
php7-tokenizer-7.3.29-r0
php7-tokenizer-7.3.30-r0
php7-xml-7.3.29-r0
php7-xmlwriter-7.3.29-r0
php7-zip-7.3.29-r0
php7-zip-7.3.30-r0
popt-1.16-r7
procps-3.3.16-r0
readline-8.0.4-r0