[AMD] Fix pip setup in AMD Miles nightly builds (#32469)

This commit is contained in:
Xinyu Jiang
2026-07-27 12:32:40 +08:00
committed by GitHub
parent 2abb1d2c37
commit c6a6200a1a
2 changed files with 8 additions and 2 deletions
@@ -38,7 +38,10 @@ jobs:
run: echo "DATE=$(date +%Y%m%d)" >> $GITHUB_ENV
- name: Install docker/build.py dependencies
run: python3 -m pip install --quiet typer
run: |
sudo apt-get update
sudo apt-get install -y python3-pip
python3 -m pip install --break-system-packages --quiet typer
- name: Build image via miles docker/build.py and tag with date
run: |
@@ -37,7 +37,10 @@ jobs:
run: echo "DATE=$(date +%Y%m%d)" >> $GITHUB_ENV
- name: Install docker/build.py dependencies
run: python3 -m pip install --quiet typer
run: |
sudo apt-get update
sudo apt-get install -y python3-pip
python3 -m pip install --break-system-packages --quiet typer
- name: Build image via miles docker/build.py and tag with date
run: |