Skip to content

Commit a09058b

Browse files
committed
windows debug
1 parent 5ac8b38 commit a09058b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,26 @@ jobs:
8585
- uses: actions/checkout@v2
8686
with:
8787
submodules: 'recursive'
88+
- name: Enable SSH (Click me for details)
89+
uses: seemethere/[email protected]
90+
with:
91+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92+
activate-with-label: false
8893
- name: Set up environment
8994
uses: ./.github/actions/setup
9095
- name: Conda Build
9196
shell: cmd /C call {0}
9297
run: >-
9398
conda build --output-folder=conda/pkg conda/recipe &&
9499
conda install tvm -c ./conda/pkg
100+
- name: Hold runner for 30 minutes or until ssh sessions have drained
101+
timeout-minutes: 30
102+
run: |
103+
echo "Holding runner until all ssh sessions have logged out"
104+
while [[ "$(who)" != "" ]]; do
105+
echo "."
106+
sleep 5
107+
done
95108
- name: Test
96109
shell: cmd /C call {0}
97110
run: >-

0 commit comments

Comments
 (0)