Skip to content

Commit

Permalink
[ci] Disable Windows-Static-Runtime
Browse files Browse the repository at this point in the history
This was added in apache#13612 but is failing intermittently on `main` and
PRs (apache#13950), so this PR disables it until we can come up with a
consistent fix
  • Loading branch information
driazati committed Feb 10, 2023
1 parent 3b141b9 commit 7c43e17
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,22 +97,23 @@ jobs:
run: >-
python -m pytest -v tests/python/all-platform-minimal-test
Windows-Static-Runtime:
if: ${{ github.repository == 'apache/tvm' }}
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up environment
uses: ./.github/actions/setup
- name: Build static TVM runtime
shell: bash -l {0}
run: |
tests/scripts/task_config_build_static.sh build
cd build
cmake .. -A x64 -DCMAKE_CONFIGURATION_TYPES="Release"
cmake --build . --config Release --target runtime
# Disabled due to https://github.com/apache/tvm/issues/13950
# Windows-Static-Runtime:
# if: ${{ github.repository == 'apache/tvm' }}
# runs-on: windows-2019
# steps:
# - uses: actions/checkout@v2
# with:
# submodules: 'recursive'
# - name: Set up environment
# uses: ./.github/actions/setup
# - name: Build static TVM runtime
# shell: bash -l {0}
# run: |
# tests/scripts/task_config_build_static.sh build
# cd build
# cmake .. -A x64 -DCMAKE_CONFIGURATION_TYPES="Release"
# cmake --build . --config Release --target runtime

Linux-Static-Runtime:
if: ${{ github.repository == 'apache/tvm' }}
Expand Down

0 comments on commit 7c43e17

Please sign in to comment.