Skip to content

Commit

Permalink
[CI] Updated ci.py to use task_build.py
Browse files Browse the repository at this point in the history
`task_build.sh` was replaced with `task_build.py` in
apache#10359.  This commit updates the
`ci.py` script and the contribution documentation to use
`task_build.py` instead of `task_build.sh`.
  • Loading branch information
Lunderberg committed Mar 10, 2022
1 parent 879bd4f commit 03a75db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/contribute/ci.rst
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ and help in mounting your current directory.
# the tvm directory is automatically mounted
# example: build tvm (note: this will overrwrite build/)
$ ./tests/scripts/task_config_build_cpu.sh
$ ./tests/scripts/task_build.sh build -j32
$ ./tests/scripts/task_build.py --build-dir build --num-executors 32
Reporting Issues
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/ci.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def docs(

scripts = extra_setup + [
config,
f"./tests/scripts/task_build.sh build -j{NPROC}",
f"./tests/scripts/task_build.py --build-dir build --num-executors {NPROC}",
"./tests/scripts/task_ci_setup.sh",
"./tests/scripts/task_python_docs.sh",
]
Expand Down

0 comments on commit 03a75db

Please sign in to comment.