.github: Add reusable workflow for generic linux_job#783
Merged
seemethere merged 45 commits intomainfrom Sep 29, 2022
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
c8b56d9 to
fc98c0c
Compare
Adds a workflow for build/test on linux, could potentially use some improvements to support GPU but this should get _most_ users off the ground quickly Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
abd9bc9 to
a788fb5
Compare
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
malfet
approved these changes
Sep 29, 2022
Contributor
malfet
left a comment
There was a problem hiding this comment.
Looks good to me, can it be perhaps pair it with similar change to pytorch/pytorch that uses those actions rather than have 2 slightly different copies of those actions.
malfet
added a commit
to pytorch/pytorch
that referenced
this pull request
Oct 1, 2022
Instead of local copies, use workflows checked into test-infra by pytorch/test-infra#783
malfet
added a commit
to pytorch/pytorch
that referenced
this pull request
Oct 1, 2022
Instead of local copies, use workflows checked into test-infra by pytorch/test-infra#783
pytorchmergebot
pushed a commit
to pytorch/pytorch
that referenced
this pull request
Oct 1, 2022
Instead of local copies, use workflows checked into test-infra by pytorch/test-infra#783 Thought about deleting the actions later, but if I understand how GHA merges work, older PRs merged onto this changes should not cause any problems as it will immediately reference actions from test-infra Pull Request resolved: #86035 Approved by: https://github.com/kit1980
mehtanirav
pushed a commit
to pytorch/pytorch
that referenced
this pull request
Oct 4, 2022
Instead of local copies, use workflows checked into test-infra by pytorch/test-infra#783 Thought about deleting the actions later, but if I understand how GHA merges work, older PRs merged onto this changes should not cause any problems as it will immediately reference actions from test-infra Pull Request resolved: #86035 Approved by: https://github.com/kit1980
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
Adds a reusable workflow for running generic scripts on linux. Should cover cpu as well as all of the current CUDA versions we support in our binary images.
Basic idea behind this is that it gives users an easy interface to create a generic workflow with all of the niceties of our current setup like:
with-sshaccess by defaultUsers will give a simple script to the reusable workflow that can either be a multiline string defined in the YAML or can just reference a local bash script from the repository itself.
Usage:
depends on changes from #782