Skip to content

Commit 5b22107

Browse files
committed
fix: try to build for x86_64-pc-windows-gnu
1 parent 7381c02 commit 5b22107

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: windows-latest
3939
strategy:
4040
matrix:
41-
target: [i686-pc-windows-msvc, x86_64-pc-windows-msvc]
41+
target: [i686-pc-windows-gnu, x86_64-pc-windows-gnu]
4242

4343
steps:
4444
- name: Checkout source

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ cargo build
1111
To build for specific targets:
1212
```
1313
//32 bits windows
14-
cargo build --target=i686-pc-windows-msvc
14+
cargo build --target=i686-pc-windows-gnu
1515
//64 bits windows
16-
cargo build --target=x86_64-pc-windows-msvc
16+
cargo build --target=x86_64-pc-windows-gnu
1717
```
1818

1919
You can find auto-built binaries on the [releases](https://github.com/Torwent/wasp-input/releases) page.

0 commit comments

Comments
 (0)