Skip to content

Commit

Permalink
[ci] Use smaller ARM nodes for build/test (#11445)
Browse files Browse the repository at this point in the history
This applies the new instances from tlc-pack/ci-terraform#32

Co-authored-by: driazati <driazati@users.noreply.github.com>
  • Loading branch information
driazati and driazati authored May 25, 2022
1 parent bbdb656 commit 92cc5b0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
20 changes: 10 additions & 10 deletions Jenkinsfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jenkins/Build.groovy.j2
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ stage('Build') {
},
'BUILD: arm': {
if (!skip_ci && is_docs_only_build != 1) {
node('ARM') {
node('ARM-SMALL') {
ws({{ m.per_exec_ws('tvm/build-arm') }}) {
init_git()
sh (
Expand Down
7 changes: 4 additions & 3 deletions jenkins/Test.groovy.j2
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
{% call(shard_index, num_shards) m.sharded_test_step(
name="integration: aarch64",
num_shards=4,
node="ARM", ws="tvm/ut-python-arm",
node="ARM-SMALL",
ws="tvm/ut-python-arm",
platform="arm",
test_method_names=test_method_names,
) %}
Expand Down Expand Up @@ -139,7 +140,7 @@
{% endcall %}
{% call(shard_index, num_shards) m.sharded_test_step(
name="topi: aarch64",
node="ARM",
node="ARM-SMALL",
ws="tvm/ut-python-arm",
platform="arm",
num_shards=2,
Expand All @@ -159,7 +160,7 @@
{% endcall %}
{% call(shard_index, num_shards) m.sharded_test_step(
name="frontend: aarch64",
node="ARM",
node="ARM-SMALL",
ws="tvm/frontend-python-arm",
platform="arm",
num_shards=2,
Expand Down

0 comments on commit 92cc5b0

Please sign in to comment.