-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Unity][CI] setup CI (do not upstream to main) #13902
Conversation
Thanks for contributing to TVM! Please refer to the contributing guidelines https://tvm.apache.org/docs/contribute/ for useful information and tips. Please request code reviews from Reviewers by @-ing them in a comment. Generated by tvm-bot |
@YuchenJin because you're always launching the instances and then exiting, you'd incur the minimum charge of 60 seconds for the instances you're running even if you don't use any of the compute - might be better to turn off the builds in github somewhere? |
Thanks for the suggestion! The main reason for adding |
@@ -17,6 +17,9 @@ | |||
# under the License. | |||
set -euxo pipefail | |||
|
|||
# SKIP: DO NOT UPSTREAM TO MAIN | |||
exit 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move this logic into the Jenkins scripts themselves before any node(...)
calls are made? Doing it here still allocates machines, runs the docker setup, etc. which is not that much but expensive to end up doing nothing
#13910 should achieve the asks that leverages a customized jenkins setup and skip most of the existing pipelines without starting a stage |
Thanks! |
Set up CI to run Relax tests.