Skip to content

Commit

Permalink
Use docker images from main
Browse files Browse the repository at this point in the history
  • Loading branch information
driazati committed Oct 17, 2022
1 parent 6484ea4 commit f282d14
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
# matrix of build configs
config:
- cuda: 'none'
image: 'tlcpack/package-cpu:1d98bf9'
image: 'tlcpack/package-cpu:0b3b4c9'
package_name: 'apache-tvm'
- cuda: '10.2'
image: 'tlcpack/package-cu102:1d98bf9'
image: 'tlcpack/package-cu102:0b3b4c9'
package_name: 'apache-tvm-cu102'
- cuda: '11.3'
image: 'tlcpack/package-cu113:1d98bf9'
image: 'tlcpack/package-cu113:0b3b4c9'
package_name: 'apache-tvm-cu113'
- cuda: '11.6'
image: 'tlcpack/package-cu116:1d98bf9'
image: 'tlcpack/package-cu116:0b3b4c9'
package_name: 'apache-tvm-cu116'

runs-on: ubuntu-latest
Expand Down Expand Up @@ -154,4 +154,4 @@ jobs:
run: |
set -eux
python3 -m pip install github3.py
python3 wheel/wheel_upload.py --tag v0.7.dev1 tvm/python/dist
python3 wheel/wheel_upload.py --tag v0.7.dev1 tvm/python/dist
2 changes: 1 addition & 1 deletion common/sync_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Modify the following two settings during release
# -----------------------------------------------------------
# Tag used for stable build.
__stable_build__ = "v0.9.0"
__stable_build__ = "v0.10.0"
# -----------------------------------------------------------

def py_str(cstr):
Expand Down
2 changes: 1 addition & 1 deletion wheel/build_lib_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ rm -rf build
mkdir -p build
cd build

MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET:-10.11}
MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET:-10.13}

cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET} \
Expand Down
1 change: 1 addition & 0 deletions wheel/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

cd /workspace/tvm

pip3 install junitparser
bash tests/scripts/task_python_unittest.sh

0 comments on commit f282d14

Please sign in to comment.