File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ name: Build tutorials (nightly/test)
1515# download the binaries in .jenkins/build.sh.
1616on :
1717 # Only main branch for now. Uncomment the below line to enable it on PRs.
18- # pull_request:
18+ pull_request :
1919
2020 # Comment out the below line to disable on the main branch
21- # push:
22- # branches:
23- # - main
21+ push :
22+ branches :
23+ - main
2424 workflow_dispatch :
2525
2626concurrency :
Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ sudo apt-get install -y pandoc
3030# Install PyTorch Nightly for test.
3131if [ " ${USE_NIGHTLY:- 0} " -eq 1 ]; then
3232 sudo pip uninstall -y torch torchvision torchaudio
33- pip3 install torch==2.10 .0 torchvision torchaudio --index-url https://download.pytorch.org/whl/test/cu130
33+ pip3 install torch==2.11 .0 torchvision torchaudio --index-url https://download.pytorch.org/whl/test/cu130
3434 pip show torch
3535fi
3636
3737# Nightly - pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html
38- # Install 2.5 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed).
38+ # Install 2.11 to merge all 2.11 PRs - uncomment to install nightly binaries (update the version as needed).
3939# sudo pip uninstall -y torch torchvision torchaudio torchtext torchdata
40- # pip3 install torch==2.10 .0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu130
40+ # pip3 install torch==2.11 .0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu130
4141# Install two language tokenizers for Translation with TorchText tutorial
4242pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.4.0/en_core_web_sm-3.4.0-py3-none-any.whl
4343
Original file line number Diff line number Diff line change 4040 "intermediate_source/tensorboard_profiler_tutorial" , # reenable after 2.0 release.
4141 "advanced_source/semi_structured_sparse" , # reenable after 3303 is fixed.
4242 "intermediate_source/torchrec_intro_tutorial.py" , #failing with 2.8 reenable after 3498
43+ "intermediate_source/torch_export_tutorial.py" , # failing with 2.11 issue #3773
44+ "beginner_source/mosaic_memory_profiling_tutorial.py" , # failing with 2.11 issue #3774
45+ "intermediate_source/variable_length_attention_tutorial.py" , # failing with 2.11 issue #3775
4346]
4447
4548def tutorial_source_dirs () -> List [Path ]:
You can’t perform that action at this time.
0 commit comments