Skip to content

Commit b99c3fd

Browse files
authored
Add windows build workflow
In theory, i hope it works, also switch to 32bit build i guess
1 parent c0aeff0 commit b99c3fd

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,17 @@ jobs:
3838
with:
3939
name: supmover-macos
4040
path: supmover
41+
42+
build-windows:
43+
runs-on: windows-2022
44+
45+
steps:
46+
- name: Checkout
47+
uses: actions/checkout@v3
48+
- name: Compile
49+
shell: cmd
50+
run: ${{ '"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" && cl /nologo /O2 /Oi /Gy /GS /GL /fp:precise /EHsc /MD /Zc:inline /TP /analyze- /permissive- /Fesupmover.exe main.cpp' }
51+
- uses: actions/upload-artifact@v3
52+
with:
53+
name: supmover.exe
54+
path: supmover

0 commit comments

Comments
 (0)