Skip to content

Commit

Permalink
fix git on windows (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hzfengsy authored Mar 18, 2023
1 parent ee05925 commit fa85020
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/conda_cpu_nigthly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel_manylinux_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

11 changes: 7 additions & 4 deletions .github/workflows/wheel_winmac_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down Expand Up @@ -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

0 comments on commit fa85020

Please sign in to comment.