Browse Source

Add revision check, so pipeline can build new revisions

pull/19/head
tobbenb 1 year ago
parent
commit
ce79a74de0
5 changed files with 12 additions and 1 deletions
  1. +4
    -1
      Dockerfile
  2. +3
    -0
      Dockerfile.aarch64
  3. +3
    -0
      Dockerfile.armhf
  4. +1
    -0
      README.md
  5. +1
    -0
      readme-vars.yml

+ 4
- 1
Dockerfile 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 \

+ 3
- 0
Dockerfile.aarch64 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 \

+ 3
- 0
Dockerfile.armhf 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 \

+ 1
- 0
README.md 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.

+ 1
- 0
readme-vars.yml 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." }

Loading…
Cancel
Save