diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-03-18 08:42:07 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-18 10:42:07 -0400 |
| commit | 78b53a60b4018b25c64a2477408c10144a750252 (patch) | |
| tree | c193fcd988536af79ea3afb7f790d411128c4ba1 /deployment/build.linux.musl-linux-arm64 | |
| parent | 4bcabbde7b8c1a9a0ca7a89ab3e2b0de390393f5 (diff) | |
Remove legacy build utilities (#11162)
Diffstat (limited to 'deployment/build.linux.musl-linux-arm64')
| -rwxr-xr-x | deployment/build.linux.musl-linux-arm64 | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/deployment/build.linux.musl-linux-arm64 b/deployment/build.linux.musl-linux-arm64 deleted file mode 100755 index ae9ab010f5..0000000000 --- a/deployment/build.linux.musl-linux-arm64 +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -#= Generic Linux musl-linux-arm64 .tar.gz - -set -o errexit -set -o xtrace - -# Move to source directory -pushd "${SOURCE_DIR}" - -# Get version -if [[ ${IS_UNSTABLE} == 'yes' ]]; then - version="${BUILD_ID}" -else - version="$( grep "version:" ./build.yaml | sed -E 's/version: "([0-9\.]+.*)"/\1/' )" -fi - -# Build archives -dotnet publish Jellyfin.Server --configuration Release --self-contained --runtime linux-musl-arm64 --output dist/jellyfin-server_"${version}"/ -p:DebugSymbols=false -p:DebugType=none -p:UseAppHost=true -tar -czf jellyfin-server_"${version}"_linux-arm64-musl.tar.gz -C dist jellyfin-server_"${version}" -rm -rf dist/jellyfin-server_"${version}" - -# Move the artifacts out -mkdir -p "${ARTIFACT_DIR}/" -mv jellyfin[-_]*.tar.gz "${ARTIFACT_DIR}/" - -if [[ ${IS_DOCKER} == YES ]]; then - chown -Rc "$(stat -c %u:%g "${ARTIFACT_DIR}")" "${ARTIFACT_DIR}" -fi - -popd |
