From 370d1649932b7d2f0140ed6a34c67fae0f96f92d Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 4 Jun 2026 12:22:41 +0200 Subject: [PATCH] fix(jellyfin): install intel-igc deps before intel-opencl-icd to fix dependency order (#14927) --- ct/jellyfin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/jellyfin.sh b/ct/jellyfin.sh index 28d357047..2072d6bc5 100644 --- a/ct/jellyfin.sh +++ b/ct/jellyfin.sh @@ -36,13 +36,13 @@ function update_script() { # Fetch compute-runtime first so /tmp/gh_rel.json is populated for IGC tag resolution fetch_and_deploy_gh_release "intel-libgdgmm12" "intel/compute-runtime" "binary" "latest" "" "libigdgmm12_*_amd64.deb" - fetch_and_deploy_gh_release "intel-opencl-icd" "intel/compute-runtime" "binary" "latest" "" "intel-opencl-icd_*_amd64.deb" local igc_tag _resolve_igc_tag igc_tag fetch_and_deploy_gh_release "intel-igc-core-2" "intel/intel-graphics-compiler" "binary" "$igc_tag" "" "intel-igc-core-2_*_amd64.deb" fetch_and_deploy_gh_release "intel-igc-opencl-2" "intel/intel-graphics-compiler" "binary" "$igc_tag" "" "intel-igc-opencl-2_*_amd64.deb" + fetch_and_deploy_gh_release "intel-opencl-icd" "intel/compute-runtime" "binary" "latest" "" "intel-opencl-icd_*_amd64.deb" msg_ok "Updated Intel Dependencies" fi