From 7c43e17fdc80aa565bfe9a5699b6e5aa4076dc83 Mon Sep 17 00:00:00 2001 From: driazati Date: Fri, 10 Feb 2023 10:50:05 -0800 Subject: [PATCH] [ci] Disable Windows-Static-Runtime This was added in #13612 but is failing intermittently on `main` and PRs (#13950), so this PR disables it until we can come up with a consistent fix --- .github/workflows/main.yml | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d48c557ff03..977bc189100b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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' }}