diff --git a/.github/workflows/conda_cpu_nigthly.yaml b/.github/workflows/conda_cpu_nigthly.yaml index 729eb57..aaa7d99 100644 --- a/.github/workflows/conda_cpu_nigthly.yaml +++ b/.github/workflows/conda_cpu_nigthly.yaml @@ -40,10 +40,13 @@ jobs: conda info conda list - name: TVM checkout - run: | - git clone https://github.com/apache/tvm tvm --recursive + uses: actions/checkout@v3 + with: + submodules: 'recursive' + repository: apache/tvm + path: tvm - name: Sync Package - run: python3 common/sync_package.py ${{ matrix.pkg }} + run: python3 common/sync_package.py ${{ matrix.pkg }} --skip-checkout - name: Conda-Build@Win if: startsWith(matrix.os, 'windows') shell: cmd /C call {0} diff --git a/.github/workflows/wheel_manylinux_nightly.yaml b/.github/workflows/wheel_manylinux_nightly.yaml index 24a6048..3c284dd 100644 --- a/.github/workflows/wheel_manylinux_nightly.yaml +++ b/.github/workflows/wheel_manylinux_nightly.yaml @@ -63,6 +63,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.TLCPACK_GITHUB_TOKEN }} with: files: tvm/python/repaired_wheels/*.whl - tag_name: v0.9.dev0 + tag_name: v0.12.dev prerelease: true diff --git a/.github/workflows/wheel_winmac_nightly.yaml b/.github/workflows/wheel_winmac_nightly.yaml index 72d7be7..98e35e3 100644 --- a/.github/workflows/wheel_winmac_nightly.yaml +++ b/.github/workflows/wheel_winmac_nightly.yaml @@ -41,10 +41,13 @@ jobs: conda info conda list - name: TVM checkout - run: | - git clone https://github.com/apache/tvm tvm --recursive + uses: actions/checkout@v3 + with: + submodules: 'recursive' + repository: apache/tvm + path: tvm - name: Sync Package - run: python3 common/sync_package.py ${{ matrix.pkg }} + run: python3 common/sync_package.py ${{ matrix.pkg }} --skip-checkout - name: Build@MacOS if: startsWith(matrix.os, 'macOS') shell: bash -l {0} @@ -86,5 +89,5 @@ jobs: GITHUB_TOKEN: ${{ secrets.TLCPACK_GITHUB_TOKEN }} with: files: tvm/python/dist/*.whl - tag_name: v0.9.dev0 + tag_name: v0.12.dev prerelease: true