From 5996946bd9156899eb013f3ca81a340b26b1bb76 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 24 Jun 2026 17:32:17 -0700 Subject: [PATCH] ci: disable unavailable microsoft apt mirrors --- .github/workflows/test_server_root_path.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test_server_root_path.yml b/.github/workflows/test_server_root_path.yml index 985653796c2..529e2db22cc 100644 --- a/.github/workflows/test_server_root_path.yml +++ b/.github/workflows/test_server_root_path.yml @@ -105,6 +105,16 @@ jobs: with: node-version: "20" + - name: Disable unavailable Microsoft apt mirrors + run: | + mapfile -t microsoft_sources < <( + sudo grep -rl "packages.microsoft.com" /etc/apt/sources.list /etc/apt/sources.list.d 2>/dev/null || true + ) + for source_file in "${microsoft_sources[@]}"; do + echo "Disabling unavailable apt source: ${source_file}" + sudo mv "${source_file}" "${source_file}.disabled" + done + - name: Install UI deps and Chromium working-directory: ui/litellm-dashboard run: |