Skip to content

Commit

Permalink
#0: use python dependency cache when testing python wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
TT-billteng committed May 25, 2024
1 parent 9fc7db3 commit 5dbf2c9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/eager-package-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,13 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: eager-dist-${{ matrix.os }}-${{ matrix.runner-hw-info.arch }}
- name: Set up end-to-end tests environment
run: ./tests/scripts/set_up_end_to_end_tests_env.sh
- uses: ./.github/actions/install-python-deps
- name: Create env and install wheel
run: |
python3 -m venv env
source env/bin/activate
python -m pip config set global.extra-index-url https://download.pytorch.org/whl/cpu
python -m pip install metal_libs-*.whl
- name: Set up dynamic env vars
working-directory: tests/end_to_end_tests
run: |
Expand Down

0 comments on commit 5dbf2c9

Please sign in to comment.