Skip to content

Commit 56ca358

Browse files
committed
add comment
1 parent ecbb7e6 commit 56ca358

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

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

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
name: Build tutorials (nightly/test)
2+
# This is a workflow to build tutorials using nightly or the test/release
3+
# candidate builds for pytorch libraries. It downloads torch and other torch
4+
# related libraries from the nightly or test channel and checks that the
5+
# tutorials can run. This workflow will not upload the built docs anywhere in
6+
# order to prevent polluting the official documentation.
27

8+
# During releases, this workflow should be run on PRs to verify that the
9+
# tutorials work with the test/rc builds before the official release is made.
10+
# When there is no release candidate, this workflow should only be run on the
11+
# main branch since nightly can be unstable and we do not want to block PRs due
12+
# to failures in this workflow.
13+
14+
# To change the channel between nightly and test/rc, change the index used to
15+
# download the binaries in .jenkins/build.sh.
316
on:
4-
# Only main branch for now
17+
# Only main branch for now. Uncomment the below line to enable it on PRs.
518
# pull_request:
19+
20+
# Comment out the below line to disable on the main branch
621
push:
722
branches:
823
- main

0 commit comments

Comments
 (0)