aboutsummaryrefslogtreecommitdiff
path: root/deployment/build.macos.amd64
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/build.macos.amd64')
-rwxr-xr-xdeployment/build.macos.amd6431
1 files changed, 0 insertions, 31 deletions
diff --git a/deployment/build.macos.amd64 b/deployment/build.macos.amd64
deleted file mode 100755
index 81e0f43f6..000000000
--- a/deployment/build.macos.amd64
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-#= macOS 10.13+ amd64 .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 osx-x64 --output dist/jellyfin-server_"${version}"/ -p:DebugSymbols=false -p:DebugType=none -p:UseAppHost=true
-tar -czf jellyfin-server_"${version}"_macos-amd64.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