From: Charles <32498151+charlesomer@users.noreply.github.com> Date: Thu, 20 May 2021 11:42:58 +0000 (+0100) Subject: Added branch switching for SPS docker build. X-Git-Tag: 4.1-dev~111^2^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0b6500a37e586de381d789e5c91c2a6a5b8c5cf;p=thirdparty%2Fshairport-sync.git Added branch switching for SPS docker build. --- diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index 355d71b0..772586e1 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -13,8 +13,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Set branch env. - run: echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV + - name: Set SHAIRPORT_SYNC_BRANCH env. + run: echo "SHAIRPORT_SYNC_BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV - name: Set up ssh agent uses: webfactory/ssh-agent@v0.5.2 # Can be removed when no longer pulling from private repos. with: @@ -36,7 +36,7 @@ jobs: file: ./docker/Dockerfile platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm64,linux/arm/v7 push: true - tags: registry.nova.do/shairport-sync:unstable-${{ env.BRANCH }} + tags: registry.nova.do/shairport-sync:unstable-${{ env.SHAIRPORT_SYNC_BRANCH }} build-args: | - BRANCH=${{ env.BRANCH }} + SHAIRPORT_SYNC_BRANCH=${{ env.SHAIRPORT_SYNC_BRANCH }} ssh: github=${{ env.SSH_AUTH_SOCK }} # Can be removed when no longer pulling from private repos. \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile index 723b7f8c..17ed2451 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -42,8 +42,10 @@ RUN make install # Shairport Sync Build System: FROM builder-base AS builder-sps -# This may be modified by the Github Action Workflow. -ARG SHAIRPORT_SYNC_BRANCH=development +# This will be modified by the Github Action Workflow and is required +# to ensure the correct branch is being used. +ARG SHAIRPORT_SYNC_BRANCH +RUN test -n "$SHAIRPORT_SYNC_BRANCH" COPY --from=builder-alac /usr/local/lib/libalac.* /usr/local/lib/ COPY --from=builder-alac /usr/local/lib/pkgconfig/alac.pc /usr/local/lib/pkgconfig/alac.pc @@ -64,7 +66,7 @@ WORKDIR / WORKDIR /shairport-sync COPY . . -RUN git status +RUN git checkout $SHAIRPORT_SYNC_BRANCH RUN git submodule init RUN git submodule update RUN autoreconf -fi diff --git a/docker/README.md b/docker/README.md index 74b986ca..8172ec08 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,3 +1,12 @@ # Shairport Sync Docker Image -https://hub.docker.com/r/mikebrady/shairport-sync \ No newline at end of file +Available at: https://hub.docker.com/r/mikebrady/shairport-sync + +## Build Example (for arm7 devices) + +TODO: remove `--ssh` when going public as this is only for private repos. +``` +docker buildx build --ssh github=$SSH_AUTH_SOCK --platform linux/arm/v7 -f ./docker/Dockerfile --build-arg SHAIRPORT_SYNC_BRANCH=development -t registry.nova.do/shairport-sync:unstable-development . +``` + +`SHAIRPORT_SYNC_BRANCH` is required to ensure the image is built using the expected branch. \ No newline at end of file