mirror of
				https://github.com/linuxserver/docker-jellyfin.git
				synced 2025-10-31 04:57:38 +09:00 
			
		
		
		
	Merge pull request #68 from linuxserver/nightly-focal
rebase nightly to focal
This commit is contained in:
		
							
								
								
									
										90
									
								
								.github/workflows/external_trigger.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										90
									
								
								.github/workflows/external_trigger.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,90 @@ | |||||||
|  | name: External Trigger Main | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   workflow_dispatch: | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   external-trigger-nightly: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - uses: actions/checkout@v2.3.3 | ||||||
|  |  | ||||||
|  |       - name: External Trigger | ||||||
|  |         if: github.ref == 'refs/heads/nightly' | ||||||
|  |         run: | | ||||||
|  |           if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY }}" ]; then | ||||||
|  |             echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY is set; skipping trigger. ****" | ||||||
|  |             exit 0 | ||||||
|  |           fi | ||||||
|  |           echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\". ****" | ||||||
|  |           echo "**** Retrieving external version ****" | ||||||
|  |           EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}') | ||||||
|  |           if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then | ||||||
|  |             echo "**** Can't retrieve external version, exiting ****" | ||||||
|  |             FAILURE_REASON="Can't retrieve external version for jellyfin branch nightly" | ||||||
|  |             curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, | ||||||
|  |               "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], | ||||||
|  |               "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} | ||||||
|  |             exit 1 | ||||||
|  |           fi | ||||||
|  |           echo "**** External version: ${EXT_RELEASE} ****" | ||||||
|  |           echo "**** Retrieving last pushed version ****" | ||||||
|  |           image="linuxserver/jellyfin" | ||||||
|  |           tag="nightly" | ||||||
|  |           token=$(curl -sX GET \ | ||||||
|  |             "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fjellyfin%3Apull" \ | ||||||
|  |             | jq -r '.token') | ||||||
|  |             multidigest=$(curl -s \ | ||||||
|  |               --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ | ||||||
|  |               --header "Authorization: Bearer ${token}" \ | ||||||
|  |               "https://ghcr.io/v2/${image}/manifests/${tag}" \ | ||||||
|  |               | jq -r 'first(.manifests[].digest)') | ||||||
|  |             digest=$(curl -s \ | ||||||
|  |               --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ | ||||||
|  |               --header "Authorization: Bearer ${token}" \ | ||||||
|  |               "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ | ||||||
|  |               | jq -r '.config.digest') | ||||||
|  |           image_info=$(curl -sL \ | ||||||
|  |             --header "Authorization: Bearer ${token}" \ | ||||||
|  |             "https://ghcr.io/v2/${image}/blobs/${digest}" \ | ||||||
|  |             | jq -r '.container_config') | ||||||
|  |           IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') | ||||||
|  |           IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') | ||||||
|  |           if [ -z "${IMAGE_VERSION}" ]; then | ||||||
|  |             echo "**** Can't retrieve last pushed version, exiting ****" | ||||||
|  |             FAILURE_REASON="Can't retrieve last pushed version for jellyfin tag nightly" | ||||||
|  |             curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, | ||||||
|  |               "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], | ||||||
|  |               "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} | ||||||
|  |             exit 1 | ||||||
|  |           fi | ||||||
|  |           echo "**** Last pushed version: ${IMAGE_VERSION} ****" | ||||||
|  |           if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then | ||||||
|  |             echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" | ||||||
|  |             exit 0 | ||||||
|  |           elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then | ||||||
|  |             echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" | ||||||
|  |             exit 0 | ||||||
|  |           else | ||||||
|  |             echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" | ||||||
|  |             response=$(curl -iX POST \ | ||||||
|  |               https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ | ||||||
|  |               --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") | ||||||
|  |             echo "**** Jenkins job queue url: ${response%$'\r'} ****" | ||||||
|  |             echo "**** Sleeping 10 seconds until job starts ****" | ||||||
|  |             sleep 10 | ||||||
|  |             buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') | ||||||
|  |             buildurl="${buildurl%$'\r'}" | ||||||
|  |             echo "**** Jenkins job build url: ${buildurl} ****" | ||||||
|  |             echo "**** Attempting to change the Jenkins job description ****" | ||||||
|  |             curl -iX POST \ | ||||||
|  |               "${buildurl}submitDescription" \ | ||||||
|  |               --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ | ||||||
|  |               --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ | ||||||
|  |               --data-urlencode "Submit=Submit" | ||||||
|  |             echo "**** Notifying Discord ****" | ||||||
|  |             TRIGGER_REASON="A version change was detected for jellyfin tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" | ||||||
|  |             curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, | ||||||
|  |               "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], | ||||||
|  |               "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} | ||||||
|  |           fi | ||||||
							
								
								
									
										43
									
								
								.github/workflows/external_trigger_scheduler.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								.github/workflows/external_trigger_scheduler.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | |||||||
|  | name: External Trigger Scheduler | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   schedule: | ||||||
|  |     - cron:  '54 * * * *' | ||||||
|  |   workflow_dispatch: | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   external-trigger-scheduler: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - uses: actions/checkout@v2.3.3 | ||||||
|  |         with: | ||||||
|  |           fetch-depth: '0' | ||||||
|  |          | ||||||
|  |       - name: External Trigger Scheduler | ||||||
|  |         run: | | ||||||
|  |           echo "**** Branches found: ****" | ||||||
|  |           git for-each-ref --format='%(refname:short)' refs/remotes | ||||||
|  |           echo "**** Pulling the yq docker image ****" | ||||||
|  |           docker pull ghcr.io/linuxserver/yq | ||||||
|  |           for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) | ||||||
|  |           do | ||||||
|  |             br=$(echo "$br" | sed 's|origin/||g') | ||||||
|  |             echo "**** Evaluating branch ${br} ****" | ||||||
|  |             ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${br}/jenkins-vars.yml \ | ||||||
|  |               | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) | ||||||
|  |             if [ "$br" == "$ls_branch" ]; then | ||||||
|  |               echo "**** Branch ${br} appears to be live; checking workflow. ****" | ||||||
|  |               if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then | ||||||
|  |                 echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." | ||||||
|  |                 curl -iX POST \ | ||||||
|  |                   -H "Authorization: token ${{ secrets.CR_PAT }}" \ | ||||||
|  |                   -H "Accept: application/vnd.github.v3+json" \ | ||||||
|  |                   -d "{\"ref\":\"refs/heads/${br}\"}" \ | ||||||
|  |                   https://api.github.com/repos/linuxserver/docker-jellyfin/actions/workflows/external_trigger.yml/dispatches | ||||||
|  |               else | ||||||
|  |                 echo "**** Workflow doesn't exist; skipping trigger. ****" | ||||||
|  |               fi | ||||||
|  |             else | ||||||
|  |               echo "**** ${br} appears to be a dev branch; skipping trigger. ****" | ||||||
|  |             fi | ||||||
|  |           done | ||||||
							
								
								
									
										38
									
								
								.github/workflows/package_trigger.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								.github/workflows/package_trigger.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | |||||||
|  | name: Package Trigger Main | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   workflow_dispatch: | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   package-trigger-nightly: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - uses: actions/checkout@v2.3.3 | ||||||
|  |  | ||||||
|  |       - name: Package Trigger | ||||||
|  |         if: github.ref == 'refs/heads/nightly' | ||||||
|  |         run: | | ||||||
|  |           if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY }}" ]; then | ||||||
|  |             echo "**** Github secret PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY is set; skipping trigger. ****" | ||||||
|  |             exit 0 | ||||||
|  |           fi | ||||||
|  |           if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then | ||||||
|  |             echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" | ||||||
|  |             exit 0 | ||||||
|  |           fi | ||||||
|  |           echo "**** Package trigger running off of nightly branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY\". ****" | ||||||
|  |           response=$(curl -iX POST \ | ||||||
|  |             https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/buildWithParameters?PACKAGE_CHECK=true \ | ||||||
|  |             --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") | ||||||
|  |           echo "**** Jenkins job queue url: ${response%$'\r'} ****" | ||||||
|  |           echo "**** Sleeping 10 seconds until job starts ****" | ||||||
|  |           sleep 10 | ||||||
|  |           buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') | ||||||
|  |           buildurl="${buildurl%$'\r'}" | ||||||
|  |           echo "**** Jenkins job build url: ${buildurl} ****" | ||||||
|  |           echo "**** Attempting to change the Jenkins job description ****" | ||||||
|  |           curl -iX POST \ | ||||||
|  |             "${buildurl}submitDescription" \ | ||||||
|  |             --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ | ||||||
|  |             --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ | ||||||
|  |             --data-urlencode "Submit=Submit" | ||||||
							
								
								
									
										50
									
								
								.github/workflows/package_trigger_scheduler.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								.github/workflows/package_trigger_scheduler.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,50 @@ | |||||||
|  | name: Package Trigger Scheduler | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   schedule: | ||||||
|  |     - cron:  '53 5 * * 5' | ||||||
|  |   workflow_dispatch: | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   package-trigger-scheduler: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - uses: actions/checkout@v2.3.3 | ||||||
|  |         with: | ||||||
|  |           fetch-depth: '0' | ||||||
|  |          | ||||||
|  |       - name: Package Trigger Scheduler | ||||||
|  |         run: | | ||||||
|  |           echo "**** Branches found: ****" | ||||||
|  |           git for-each-ref --format='%(refname:short)' refs/remotes | ||||||
|  |           echo "**** Pulling the yq docker image ****" | ||||||
|  |           docker pull ghcr.io/linuxserver/yq | ||||||
|  |           for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) | ||||||
|  |           do | ||||||
|  |             br=$(echo "$br" | sed 's|origin/||g') | ||||||
|  |             echo "**** Evaluating branch ${br} ****" | ||||||
|  |             ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${br}/jenkins-vars.yml \ | ||||||
|  |               | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) | ||||||
|  |             if [ "${br}" == "${ls_branch}" ]; then | ||||||
|  |               echo "**** Branch ${br} appears to be live; checking workflow. ****" | ||||||
|  |               if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then | ||||||
|  |                 echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" | ||||||
|  |                 triggered_branches="${triggered_branches}${br} " | ||||||
|  |                 curl -iX POST \ | ||||||
|  |                   -H "Authorization: token ${{ secrets.CR_PAT }}" \ | ||||||
|  |                   -H "Accept: application/vnd.github.v3+json" \ | ||||||
|  |                   -d "{\"ref\":\"refs/heads/${br}\"}" \ | ||||||
|  |                   https://api.github.com/repos/linuxserver/docker-jellyfin/actions/workflows/package_trigger.yml/dispatches | ||||||
|  |                 sleep 30 | ||||||
|  |               else | ||||||
|  |                 echo "**** Workflow doesn't exist; skipping trigger. ****" | ||||||
|  |               fi | ||||||
|  |             else | ||||||
|  |               echo "**** ${br} appears to be a dev branch; skipping trigger. ****" | ||||||
|  |             fi | ||||||
|  |           done | ||||||
|  |           echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" | ||||||
|  |           echo "**** Notifying Discord ****" | ||||||
|  |           curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, | ||||||
|  |             "description": "**Package Check Build(s) Triggered for jellyfin** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], | ||||||
|  |             "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} | ||||||
| @@ -1,4 +1,4 @@ | |||||||
| FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic | FROM ghcr.io/linuxserver/baseimage-ubuntu:focal | ||||||
|  |  | ||||||
| # set version label | # set version label | ||||||
| ARG BUILD_DATE | ARG BUILD_DATE | ||||||
| @@ -18,8 +18,8 @@ RUN \ | |||||||
| 	gnupg && \ | 	gnupg && \ | ||||||
|  echo "**** install jellyfin *****" && \ |  echo "**** install jellyfin *****" && \ | ||||||
|  curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ |  curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ | ||||||
|  echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ |  echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ | ||||||
|  echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ |  echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ | ||||||
|  if [ -z ${JELLYFIN_RELEASE+x} ]; then \ |  if [ -z ${JELLYFIN_RELEASE+x} ]; then \ | ||||||
|         JELLYFIN="jellyfin"; \ |         JELLYFIN="jellyfin"; \ | ||||||
|  else \ |  else \ | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic | FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal | ||||||
|  |  | ||||||
| # set version label | # set version label | ||||||
| ARG BUILD_DATE | ARG BUILD_DATE | ||||||
| @@ -19,8 +19,8 @@ RUN \ | |||||||
|  echo "**** install jellyfin *****" && \ |  echo "**** install jellyfin *****" && \ | ||||||
|  curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ |  curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ | ||||||
|  curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ |  curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ | ||||||
|  echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ |  echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ | ||||||
|  echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ |  echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ | ||||||
|  echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ |  echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ | ||||||
|  if [ -z ${JELLYFIN_RELEASE+x} ]; then \ |  if [ -z ${JELLYFIN_RELEASE+x} ]; then \ | ||||||
| 	JELLYFIN="jellyfin"; \ | 	JELLYFIN="jellyfin"; \ | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-bionic | FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal | ||||||
|  |  | ||||||
| # set version label | # set version label | ||||||
| ARG BUILD_DATE | ARG BUILD_DATE | ||||||
| @@ -19,8 +19,8 @@ RUN \ | |||||||
|  echo "**** install jellyfin *****" && \ |  echo "**** install jellyfin *****" && \ | ||||||
|  curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ |  curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ | ||||||
|  curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ |  curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ | ||||||
|  echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ |  echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ | ||||||
|  echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ |  echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ | ||||||
|  echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ |  echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ | ||||||
|  if [ -z ${JELLYFIN_RELEASE+x} ]; then \ |  if [ -z ${JELLYFIN_RELEASE+x} ]; then \ | ||||||
| 	JELLYFIN="jellyfin"; \ | 	JELLYFIN="jellyfin"; \ | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								Jenkinsfile
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								Jenkinsfile
									
									
									
									
										vendored
									
									
								
							| @@ -103,7 +103,7 @@ pipeline { | |||||||
|       steps{ |       steps{ | ||||||
|         script{ |         script{ | ||||||
|           env.EXT_RELEASE = sh( |           env.EXT_RELEASE = sh( | ||||||
|             script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', |             script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', | ||||||
|             returnStdout: true).trim() |             returnStdout: true).trim() | ||||||
|             env.RELEASE_LINK = 'custom_command' |             env.RELEASE_LINK = 'custom_command' | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -62,7 +62,8 @@ This image provides various versions that are available via tags. `latest` tag u | |||||||
|  |  | ||||||
| | Tag | Description | | | Tag | Description | | ||||||
| | :----: | --- | | | :----: | --- | | ||||||
| | latest | Stable Jellyfin releases | | | latest | Stable Jellyfin releases - Focal baseimage | | ||||||
|  | | bionic | Stable Jellyfin releases - Bionic baseimage | | ||||||
| | nightly | Unstable Jellyfin releases | | | nightly | Unstable Jellyfin releases | | ||||||
|  |  | ||||||
| ## Usage | ## Usage | ||||||
| @@ -299,6 +300,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 | |||||||
|  |  | ||||||
| ## Versions | ## Versions | ||||||
|  |  | ||||||
|  | * **23.11.20:** - Rebase to Focal, branch off Bionic. | ||||||
| * **22.07.20:** - Install nightly from unstable. | * **22.07.20:** - Install nightly from unstable. | ||||||
| * **27.05.20:** - Set web directory path. | * **27.05.20:** - Set web directory path. | ||||||
| * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. | * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ | |||||||
| # jenkins variables | # jenkins variables | ||||||
| project_name: docker-jellyfin | project_name: docker-jellyfin | ||||||
| external_type: na | external_type: na | ||||||
| custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" | custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" | ||||||
| release_type: prerelease | release_type: prerelease | ||||||
| release_tag: nightly | release_tag: nightly | ||||||
| ls_branch: nightly | ls_branch: nightly | ||||||
|   | |||||||
| @@ -16,7 +16,8 @@ available_architectures: | |||||||
| # development version | # development version | ||||||
| development_versions: true | development_versions: true | ||||||
| development_versions_items: | development_versions_items: | ||||||
|   - { tag: "latest", desc: "Stable Jellyfin releases" } |   - { tag: "latest", desc: "Stable Jellyfin releases - Focal baseimage" } | ||||||
|  |   - { tag: "bionic", desc: "Stable Jellyfin releases - Bionic baseimage" } | ||||||
|   - { tag: "nightly", desc: "Unstable Jellyfin releases" } |   - { tag: "nightly", desc: "Unstable Jellyfin releases" } | ||||||
|  |  | ||||||
| # container parameters | # container parameters | ||||||
| @@ -99,6 +100,7 @@ app_setup_block: | | |||||||
|  |  | ||||||
| # changelog | # changelog | ||||||
| changelogs: | changelogs: | ||||||
|  |   - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } | ||||||
|   - { date: "22.07.20:", desc: "Install nightly from unstable." } |   - { date: "22.07.20:", desc: "Install nightly from unstable." } | ||||||
|   - { date: "27.05.20:", desc: "Set web directory path." } |   - { date: "27.05.20:", desc: "Set web directory path." } | ||||||
|   - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } |   - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user