Skip to content

Commit c1e7df9

Browse files
authored
Use both github and self-hosted win runners (#502)
* Test new windows runner * label update * Clear workspace before checkout * rm container after build * always rm * test github runnners * fix merge * minimize diff
1 parent f46efc9 commit c1e7df9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build-test-windows.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
matrix:
2222
config: [Debug, Release]
2323
steps:
24+
- name: Clear workspace
25+
run: Remove-Item -Path "${{ github.workspace }}\*" -Recurse -Force
26+
2427
- name: Checkout
2528
uses: actions/checkout@v2
2629
with:
@@ -81,4 +84,8 @@ jobs:
8184
with:
8285
name: Distributives
8386
path: wheelhouse\meshlib-*.whl
84-
retention-days: 1
87+
retention-days: 1
88+
89+
- name: Remove container
90+
if: always()
91+
run: docker rm -f meshlib-win

0 commit comments

Comments
 (0)