mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			863 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			863 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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
 |