forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.circleci: Specify setup job to run on everything (pytorch#35013)
Summary: CircleCI by default, chooses to run 0 jobs on tags meaning that when we tag a build that no job is run if a dependent job does not contain the correct filters. This adds an explicit configuration to run the setup job on every branch and every tag that CircleCI can run on. For more information on CircleCI filters and what they do (and more importantly what they do not do) visit: https://circleci.com/docs/2.0/configuration-reference/#filters-1 Signed-off-by: Eli Uriegas <eliuriegas@fb.com> Pull Request resolved: pytorch#35013 Differential Revision: D20535560 Pulled By: seemethere fbshipit-source-id: 7ee5dddbc0a9416fd76ed198e5447318c53e1873
- Loading branch information
1 parent
35d9874
commit 6d48871
Showing
4 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
- setup: | ||
# Run this job on everything since it is | ||
# the dependency for everything. | ||
filters: | ||
tags: | ||
only: /.*/ | ||
branches: | ||
only: /.*/ |