File tree Expand file tree Collapse file tree 4 files changed +12
-14
lines changed
Expand file tree Collapse file tree 4 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 4242* .idb
4343* .pdb
4444
45- # Kernel Module Compile Results
46- * .mod *
47- * .cmd
48- .tmp_versions /
49- modules.order
50- Module.symvers
51- Mkfile.old
52- dkms.conf
5345
5446# custom
5547bin /
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
1919 - os : windows
2020 name : x64_msvc
2121 script :
22- - ' "/c/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/Common7/Tools/VsDevCmd.bat" '
23- - msbuild.exe vs2019/stackman.sln /p:Platform=x64
24- - vs2019/ x64/Debug/test.exe
22+ - cd vs2019
23+ - build_x64.cmd
24+ - x64/Debug/test.exe
2525 - os : windows
2626 name : x86_msvc
2727 script :
28- - ' "/c/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/Common7/Tools/VsDevCmd.bat" '
29- - msbuild.exe vs2019/stackman.sln /p:Platform=x86
30- - vs2019/win32 /Debug/test.exe
28+ - cd vs2019
29+ - build_x86.cmd
30+ - Win32 /Debug/test.exe
Original file line number Diff line number Diff line change 1+ rem Build x64 with visualstudio2017buildtools
2+ C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat
3+ msbuild stackman.sln /p:Platform=x64
Original file line number Diff line number Diff line change 1+ rem Build x86 with visualstudio2017buildtools
2+ C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat
3+ msbuild stackman.sln /p:Platform=x86
You can’t perform that action at this time.
0 commit comments