From d46c6c523f5d9f0a8248cf16a27aa0a6545f921e Mon Sep 17 00:00:00 2001 From: Jinsong Ji Date: Mon, 30 Dec 2024 18:41:31 -0800 Subject: [PATCH] [CI] Use 24.04 completed instead of 22.04 success for igc dev --- devops/dependencies-igc-dev.json | 8 ++++---- devops/scripts/update_drivers.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/devops/dependencies-igc-dev.json b/devops/dependencies-igc-dev.json index 28cc58e1c7947..36680613be9f8 100644 --- a/devops/dependencies-igc-dev.json +++ b/devops/dependencies-igc-dev.json @@ -1,10 +1,10 @@ { "linux": { "igc_dev": { - "github_tag": "igc-dev-e0d826a", - "version": "e0d826a", - "updated_at": "2024-12-17T21:18:30Z", - "url": "https://api.github.com/repos/intel/intel-graphics-compiler/actions/artifacts/2327583926/zip", + "github_tag": "igc-dev-7c39bf4", + "version": "7c39bf4", + "updated_at": "2024-12-31T02:06:13Z", + "url": "https://api.github.com/repos/intel/intel-graphics-compiler/actions/artifacts/2373086695/zip", "root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu" } } diff --git a/devops/scripts/update_drivers.py b/devops/scripts/update_drivers.py index 4c3cbb791c851..ec5211a174fc7 100644 --- a/devops/scripts/update_drivers.py +++ b/devops/scripts/update_drivers.py @@ -17,7 +17,7 @@ def get_latest_workflow_runs(repo, workflow_name): + repo + "/actions/workflows/" + workflow_name - + ".yml/runs?status=success" + + ".yml/runs?status=completed" ).read() return json.loads(action_runs)["workflow_runs"][0] @@ -38,7 +38,7 @@ def uplift_linux_igfx_driver(config, platform_tag, igc_dev_only): config[platform_tag]["igc_dev"]["version"] = igcdevver config[platform_tag]["igc_dev"]["updated_at"] = igc_dev["updated_at"] config[platform_tag]["igc_dev"]["url"] = get_artifacts_download_url( - "intel/intel-graphics-compiler", "IGC_Ubuntu22.04_llvm14_clang-" + igcdevver + "intel/intel-graphics-compiler", "IGC_Ubuntu24.04_llvm14_clang-" + igcdevver ) return config