-
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
[ci] Split out C++ unittests #13335
[ci] Split out C++ unittests #13335
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 |
a48525e
to
4a50f63
Compare
ci/jenkins/Build.groovy.j2
Outdated
@@ -208,7 +231,9 @@ stage('Build') { | |||
script: "${docker_run} ${ci_hexagon} ./tests/scripts/task_config_build_hexagon.sh build", | |||
label: 'Create Hexagon cmake config', | |||
) | |||
make(ci_hexagon, 'build', '-j2') | |||
cmake_build(ci_hexagon, 'build', '-j2') | |||
make_standalone_crt(ci_hexagon, 'build') |
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.
We would want to remove make_standalone_crt() here for the hexagon build.
cc: @mehrdadh
59fab28
to
93e6112
Compare
607d10d
to
38b484f
Compare
@driazati can you push your branch to a TVM branch to test the jenkins changes? |
Certain GitHub forks are configured in Jenkins to be trusted (e.g. those for people on the oss team), so the extra step to push to apache/tvm isn't necessary. You can see the info here: https://ci.tlcpack.ai/job/tvm/indexing/events, when a job comes from an untrusted source it'll say something like
|
03d9e44
to
96d73dc
Compare
This makes C++ unittests follow the normal flow of build -> upload artifacts -> download and run tests. To simplify the changes there is a new utility for interacting with S3.
ac38e84
to
a20c8a0
Compare
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.
LGTM, thanks for working on this!!
The docs deploy is broken following apache#13335: https://ci.tlcpack.ai/blue/organizations/jenkins/tvm/detail/main/4754/pipeline This avoids downloading the whole docs directory (which is just used to host documentation previews for PRs) and just grabs the `docs.tgz` which is actually used to deploy the docs.
The docs deploy is broken following apache#13335: https://ci.tlcpack.ai/blue/organizations/jenkins/tvm/detail/main/4754/pipeline This avoids downloading the whole docs directory (which is just used to host documentation previews for PRs) and just grabs the `docs.tgz` which is actually used to deploy the docs.
The docs deploy is broken following #13335: https://ci.tlcpack.ai/blue/organizations/jenkins/tvm/detail/main/4754/pipeline This avoids downloading the whole docs directory (which is just used to host documentation previews for PRs) and just grabs the `docs.tgz` which is actually used to deploy the docs. Co-authored-by: driazati <driazati@users.noreply.github.com>
* [ci] Split out C++ unittests This makes C++ unittests follow the normal flow of build -> upload artifacts -> download and run tests. To simplify the changes there is a new utility for interacting with S3. * Comments Co-authored-by: driazati <driazati@users.noreply.github.com>
The docs deploy is broken following apache#13335: https://ci.tlcpack.ai/blue/organizations/jenkins/tvm/detail/main/4754/pipeline This avoids downloading the whole docs directory (which is just used to host documentation previews for PRs) and just grabs the `docs.tgz` which is actually used to deploy the docs. Co-authored-by: driazati <driazati@users.noreply.github.com>
This makes C++ unittests follow the normal flow of build -> upload
artifacts -> download and run tests. To simplify the changes there is a
new utility for interacting with S3.