diff options
Diffstat (limited to 'linux')
l--------- | linux/Dockerfile | 1 | ||||
-rwxr-xr-x | linux/build.sh | 37 |
2 files changed, 0 insertions, 38 deletions
diff --git a/linux/Dockerfile b/linux/Dockerfile deleted file mode 120000 index 3bf4a35..0000000 --- a/linux/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -../portable/Dockerfile
\ No newline at end of file diff --git a/linux/build.sh b/linux/build.sh deleted file mode 100755 index 8af10ee..0000000 --- a/linux/build.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -#= Debian .deb builder - -set -o errexit -set -o xtrace - -# Create the intermediate build dir -BUILD_DIR="/build" -mkdir -p ${BUILD_DIR} - -# Move to source directory -pushd "${SOURCE_DIR}" - -# Build server -pushd jellyfin-server -dotnet publish Jellyfin.Server --configuration Release --self-contained --runtime linux-${DARCH} --output ${BUILD_DIR}/ -p:DebugSymbols=false -p:DebugType=none -p:UseAppHost=false -popd - -# Build web -pushd jellyfin-web -npm ci --no-audit --unsafe-perm -npm run build:production -mv dist ${BUILD_DIR}/jellyfin-web -popd - -mkdir -p "${ARTIFACT_DIR}/" - -pushd ${BUILD_DIR} -tar -czf "${ARTIFACT_DIR}"/jellyfin_${JVERS}-${PARCH}.tar.gz . -popd - -# Clean up any lingering artifacts -make -f debian/rules clean -rm -rf ${BUILD_DIR} - -popd |