1
0

Add revision check, so pipeline can build new revisions

This commit is contained in:
tobbenb
2019-04-29 00:33:23 +02:00
parent 22d3d9f323
commit ce79a74de0
5 changed files with 12 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM lsiobase/alpine:3.8
# set version label
ARG BUILD_DATE
ARG VERSION
ARG OSCAM_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="saarg"
@ -29,6 +29,9 @@ RUN \
pcsc-lite \
pcsc-lite-libs && \
echo "**** compile oscam ****" && \
if [ -z ${OSCAM_VERSION+x} ]; then \
OSCAM_VERSION=$(svn info --show-item revision http://www.streamboard.tv/svn/oscam/trunk ); \
fi && \
svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \
cd /tmp/oscam-svn && \
./config.sh \

View File

@ -29,6 +29,9 @@ RUN \
pcsc-lite \
pcsc-lite-libs && \
echo "**** compile oscam ****" && \
if [ -z ${OSCAM_VERSION+x} ]; then \
OSCAM_VERSION=$(svn info --show-item revision http://www.streamboard.tv/svn/oscam/trunk ); \
fi && \
svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \
cd /tmp/oscam-svn && \
./config.sh \

View File

@ -29,6 +29,9 @@ RUN \
pcsc-lite \
pcsc-lite-libs && \
echo "**** compile oscam ****" && \
if [ -z ${OSCAM_VERSION+x} ]; then \
OSCAM_VERSION=$(svn info --show-item revision http://www.streamboard.tv/svn/oscam/trunk ); \
fi && \
svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \
cd /tmp/oscam-svn && \
./config.sh \

View File

@ -182,6 +182,7 @@ Below are the instructions for updating containers:
## Versions
* **29.04.19:** - Add revision check, so pipeline can build new revisions.
* **28.04.19:** - Switch back to streamboard svn to fix version not showing in UI.
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
* **19.02.19:** - Add pipeline logic and multi arch, rebase to Alpine 3.8.

View File

@ -73,6 +73,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "29.04.19:", desc: "Add revision check, so pipeline can build new revisions." }
- { date: "28.04.19:", desc: "Switch back to streamboard svn to fix version not showing in UI." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "19.02.19:", desc: "Add pipeline logic and multi arch, rebase to Alpine 3.8." }