Skip to content

Commit a5fbee5

Browse files
author
AlexanderMueller
committed
added Mingw workflow
1 parent 7cb2815 commit a5fbee5

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
config:
3131
# see: https://github.com/actions/virtual-environments
3232
- {
33-
name: "Windows/2019/Static/X86/Release",
33+
name: "Windows-MSVC/2019/Static/X86/Release",
3434
os: windows-2019,
3535
config: Release,
3636
cmake_extra_args: -G "Visual Studio 16 2019" -A Win32,
@@ -39,14 +39,23 @@ jobs:
3939
cores: 2,
4040
}
4141
- {
42-
name: "Windows/2019/Static/X64/Release",
42+
name: "Windows-MSVC/2019/Static/X64/Release",
4343
os: windows-2019,
4444
config: Release,
4545
cmake_extra_args: -G "Visual Studio 16 2019" -A x64 -DCMAKE_CXX_FLAGS="/O2",
4646
sudocmd: "",
4747
artifact_name: "Windows x64",
4848
cores: 2,
4949
}
50+
- {
51+
name: "Windows-MinGW/2019/Static/X64/Release",
52+
os: windows-2019,
53+
config: Release,
54+
cmake_extra_args: "-G \"MinGW Makefiles\" -DCMAKE_C_COMPILER=C:/msys64/mingw64/bin/gcc.exe -DCMAKE_CXX_COMPILER=C:/msys64/mingw64/bin/g++.exe",
55+
sudocmd: "",
56+
artifact_name: "Windows x64",
57+
cores: 2,
58+
}
5059
- {
5160
name: "Ubuntu/18.04/Static/X64/Release",
5261
os: ubuntu-18.04,

0 commit comments

Comments
 (0)