mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-12 23:01:41 +00:00
ci: disable unavailable microsoft apt mirrors
This commit is contained in:
parent
cbc81ac7be
commit
5996946bd9
1 changed files with 10 additions and 0 deletions
10
.github/workflows/test_server_root_path.yml
vendored
10
.github/workflows/test_server_root_path.yml
vendored
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue