mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-16 23:10:13 +00:00
ddd67ce01d
Some checks failed
CI / GitHub Env Debug (push) Waiting to run
CI / Setup Release (push) Waiting to run
CI / Setup Flatpak Matrix (push) Waiting to run
CI / Linux Flatpak (push) Blocked by required conditions
CI / Linux ${{ matrix.type }} (--appimage-build, 22.04, AppImage) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 12) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 13) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 14) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest, true) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (12, true) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (13) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (14) (push) Blocked by required conditions
CI / Windows (push) Blocked by required conditions
CI Docker / Check Dockerfiles (push) Waiting to run
CI Docker / Setup Release (push) Blocked by required conditions
CI Docker / Lint Dockerfile${{ matrix.tag }} (push) Blocked by required conditions
CI Docker / Docker${{ matrix.tag }} (push) Blocked by required conditions
localize / Update Localization (push) Waiting to run
Build GH-Pages / update_pages (push) Waiting to run
CodeQL / Get language matrix (push) Has been cancelled
CodeQL / Analyze (${{ matrix.name }}) (push) Has been cancelled
167 lines
3.4 KiB
Docker
167 lines
3.4 KiB
Docker
# syntax=docker/dockerfile:1
|
|
# artifacts: true
|
|
# platforms: linux/amd64
|
|
# archlinux does not have an arm64 base image
|
|
# no-cache-filters: artifacts,sunshine
|
|
ARG BASE=archlinux/archlinux
|
|
ARG TAG=base-devel
|
|
FROM ${BASE}:${TAG} AS sunshine-base
|
|
|
|
# Update keyring to avoid signature errors, and update system
|
|
RUN <<_DEPS
|
|
#!/bin/bash
|
|
set -e
|
|
pacman -Syy --disable-download-timeout --needed --noconfirm \
|
|
archlinux-keyring
|
|
pacman -Syu --disable-download-timeout --noconfirm
|
|
pacman -Scc --noconfirm
|
|
_DEPS
|
|
|
|
FROM sunshine-base AS sunshine-build
|
|
|
|
ARG BRANCH
|
|
ARG BUILD_VERSION
|
|
ARG COMMIT
|
|
ARG CLONE_URL
|
|
# note: BUILD_VERSION may be blank
|
|
|
|
ENV BRANCH=${BRANCH}
|
|
ENV BUILD_VERSION=${BUILD_VERSION}
|
|
ENV COMMIT=${COMMIT}
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# hadolint ignore=SC2016
|
|
RUN <<_SETUP
|
|
#!/bin/bash
|
|
set -e
|
|
|
|
# Setup builder user, arch prevents running makepkg as root
|
|
useradd -m builder
|
|
echo 'builder ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
|
|
|
|
# patch the build flags
|
|
sed -i 's,#MAKEFLAGS="-j2",MAKEFLAGS="-j$(nproc)",g' /etc/makepkg.conf
|
|
|
|
# install dependencies
|
|
pacman -Syu --disable-download-timeout --needed --noconfirm \
|
|
base-devel \
|
|
cmake \
|
|
cuda \
|
|
git \
|
|
namcap \
|
|
xorg-server-xvfb
|
|
pacman -Scc --noconfirm
|
|
_SETUP
|
|
|
|
# Setup builder user
|
|
USER builder
|
|
|
|
# copy repository
|
|
WORKDIR /build/sunshine/
|
|
COPY --link .. .
|
|
|
|
# setup build directory
|
|
WORKDIR /build/sunshine/build
|
|
|
|
# configure PKGBUILD file
|
|
RUN <<_MAKE
|
|
#!/bin/bash
|
|
set -e
|
|
if [[ "${BUILD_VERSION}" == '' ]]; then
|
|
sub_version=".r${COMMIT}"
|
|
else
|
|
sub_version=""
|
|
fi
|
|
cmake \
|
|
-DSUNSHINE_CONFIGURE_PKGBUILD=ON \
|
|
-DSUNSHINE_SUB_VERSION="${sub_version}" \
|
|
-DGITHUB_CLONE_URL="${CLONE_URL}" \
|
|
-DGITHUB_BRANCH=${BRANCH} \
|
|
-DGITHUB_BUILD_VERSION=${BUILD_VERSION} \
|
|
-DGITHUB_COMMIT="${COMMIT}" \
|
|
-DSUNSHINE_CONFIGURE_ONLY=ON \
|
|
/build/sunshine
|
|
_MAKE
|
|
|
|
WORKDIR /build/sunshine/pkg
|
|
RUN <<_PACKAGE
|
|
mv /build/sunshine/build/PKGBUILD .
|
|
mv /build/sunshine/build/sunshine.install .
|
|
makepkg --printsrcinfo > .SRCINFO
|
|
_PACKAGE
|
|
|
|
# create a PKGBUILD archive
|
|
USER root
|
|
RUN <<_REPO
|
|
#!/bin/bash
|
|
set -e
|
|
tar -czf /build/sunshine/sunshine.pkg.tar.gz .
|
|
_REPO
|
|
|
|
# namcap and build PKGBUILD file
|
|
USER builder
|
|
RUN <<_PKGBUILD
|
|
#!/bin/bash
|
|
set -e
|
|
# shellcheck source=/dev/null
|
|
source /etc/profile # ensure cuda is in the PATH
|
|
export DISPLAY=:1
|
|
Xvfb ${DISPLAY} -screen 0 1024x768x24 &
|
|
namcap -i PKGBUILD
|
|
makepkg -si --noconfirm
|
|
rm -f /build/sunshine/pkg/sunshine-debug*.pkg.tar.zst
|
|
ls -a
|
|
_PKGBUILD
|
|
|
|
FROM scratch AS artifacts
|
|
|
|
COPY --link --from=sunshine-build /build/sunshine/pkg/sunshine*.pkg.tar.zst /sunshine.pkg.tar.zst
|
|
COPY --link --from=sunshine-build /build/sunshine/sunshine.pkg.tar.gz /sunshine.pkg.tar.gz
|
|
|
|
FROM sunshine-base AS sunshine
|
|
|
|
COPY --link --from=artifacts /sunshine.pkg.tar.zst /
|
|
|
|
# install sunshine
|
|
RUN <<_INSTALL_SUNSHINE
|
|
#!/bin/bash
|
|
set -e
|
|
pacman -U --disable-download-timeout --needed --noconfirm \
|
|
/sunshine.pkg.tar.zst
|
|
pacman -Scc --noconfirm
|
|
_INSTALL_SUNSHINE
|
|
|
|
# network setup
|
|
EXPOSE 47984-47990/tcp
|
|
EXPOSE 48010
|
|
EXPOSE 47998-48000/udp
|
|
|
|
# setup user
|
|
ARG PGID=1000
|
|
ENV PGID=${PGID}
|
|
ARG PUID=1000
|
|
ENV PUID=${PUID}
|
|
ENV TZ="UTC"
|
|
ARG UNAME=lizard
|
|
ENV UNAME=${UNAME}
|
|
|
|
ENV HOME=/home/$UNAME
|
|
|
|
# setup user
|
|
RUN <<_SETUP_USER
|
|
#!/bin/bash
|
|
set -e
|
|
groupadd -f -g "${PGID}" "${UNAME}"
|
|
useradd -lm -d ${HOME} -s /bin/bash -g "${PGID}" -u "${PUID}" "${UNAME}"
|
|
mkdir -p ${HOME}/.config/sunshine
|
|
ln -s ${HOME}/.config/sunshine /config
|
|
chown -R ${UNAME} ${HOME}
|
|
_SETUP_USER
|
|
|
|
USER ${UNAME}
|
|
WORKDIR ${HOME}
|
|
|
|
# entrypoint
|
|
ENTRYPOINT ["/usr/bin/sunshine"]
|