Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/nv-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ jobs:
run: |
pip list


- name: Set environment for offline unit tests
run: |
echo "HF_HOME=${{ runner.temp }}/hf_home" >> $GITHUB_ENV
mkdir -p "${{ runner.temp }}/hf_home"
echo "HF_HUB_DISABLE_TELEMETRY=1" >> $GITHUB_ENV
echo "TRANSFORMERS_OFFLINE=1" >> $GITHUB_ENV

- name: Unit tests
run: |
unset TORCH_CUDA_ARCH_LIST # only jit compile for current arch
Expand Down