Update build pipeline to 1.6.3

This commit is contained in:
2023-10-07 10:52:56 +02:00
parent 3a97506fc1
commit 42e45c349a
4 changed files with 228 additions and 16 deletions

View File

@@ -3,7 +3,7 @@
set -ex
# Configuration options you usually edit go here
ROUNDCUBEMAIL_VERSION=1.4.13
ROUNDCUBEMAIL_VERSION=1.6.3
CHECK_GPG=false
CLEAN_INTERMEDIATES=false
CONTAINER_VOLUME_CONFIG=/var/roundcube/config
@@ -72,11 +72,9 @@ if [ "$CHECK_GPG" = true ]; then
fi
fi
# Extract the file into a temporary location and clean up behind us
tar -xzf ${ROUNDCUBE_DOWNLOAD} -C ${TMPDIR}
# upstream tarballs include ./roundcubemail-${ROUNDCUBEMAIL_VERSION}/ so this gives us TMPDIR/roundcubemail-${ROUNDCUBEMAIL_VERSION}
mv ${TMPDIR}/roundcubemail-${ROUNDCUBEMAIL_VERSION} ${ROUNDCUBE_SRC}
# Extract the file
mkdir -p ${ROUNDCUBE_SRC}
tar -xzf ${ROUNDCUBE_DOWNLOAD} -C ${ROUNDCUBE_SRC} --strip-components=1 --no-same-owner
# Clean up the source tree for later use
rm -rf ${ROUNDCUBE_SRC}/installer