Skip to content

Commit 72a9725

Browse files
authored
Merge pull request #1548 from AkihiroSuda/remove-wine
CI: replace Wine with Windows
2 parents 5d87656 + 0b91df9 commit 72a9725

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
- name: Uninstall
5050
run: sudo make uninstall
5151

52-
cross-windows:
53-
name: "Windows tests (cross)"
54-
runs-on: ubuntu-22.04
52+
windows:
53+
name: "Windows tests"
54+
runs-on: windows-2022
5555
timeout-minutes: 30
5656
steps:
5757
- uses: actions/setup-go@v4
@@ -60,15 +60,10 @@ jobs:
6060
- uses: actions/checkout@v3
6161
with:
6262
fetch-depth: 1
63-
- name: Install wine
64-
run: |
65-
sudo apt-get update
66-
sudo apt-get install -y wine-binfmt wine64
67-
sudo apt-get remove -y mono-runtime || true
6863
- name: Unit tests
69-
run: GOOS=windows GOARCH=amd64 go test -v ./...
64+
run: go test -v ./...
7065
- name: Make
71-
run: make GOOS=windows GOARCH=amd64
66+
run: make
7267

7368
integration:
7469
name: Integration tests

0 commit comments

Comments
 (0)