Skip to content

Commit 6bd7dc8

Browse files
authored
2.11 RC Test (#3772)
2.11 RC Test
1 parent a18358d commit 6bd7dc8

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/build-tutorials-nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ name: Build tutorials (nightly/test)
1515
# download the binaries in .jenkins/build.sh.
1616
on:
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

2626
concurrency:

.jenkins/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ sudo apt-get install -y pandoc
3030
# Install PyTorch Nightly for test.
3131
if [ "${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
3535
fi
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
4242
pip 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

.jenkins/validate_tutorials_built.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
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

4548
def tutorial_source_dirs() -> List[Path]:

0 commit comments

Comments
 (0)