We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0aeff0 commit b99c3fdCopy full SHA for b99c3fd
1 file changed
.github/workflows/build.yml
@@ -38,3 +38,17 @@ jobs:
38
with:
39
name: supmover-macos
40
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