File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 38
38
cxx_flags : -stdlib=libc++,
39
39
exe_linker_flags : -lc++,
40
40
}
41
+ - {
42
+ name : " Windows MSVC 2019 (x64)" ,
43
+ os : windows-latest,
44
+ cxx : " cl" ,
45
+ environment_script : " C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" ,
46
+ }
41
47
42
48
steps :
43
49
- uses : actions/checkout@v2
89
95
# and build directories, but this is only available with CMake 3.13 and higher.
90
96
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
91
97
run : |
98
+ # run environment setup script if any
99
+ [ -n "${{ matrix.config.environment_script }}" ] && "${{ matrix.config.environment_script }}"
100
+
92
101
cmake $GITHUB_WORKSPACE \
93
102
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
94
103
-DCMAKE_CXX_STANDARD=20 \
You can’t perform that action at this time.
0 commit comments