Enable the MinGW build

This commit is contained in:
2023-01-05 20:56:01 -05:00
parent 318050ecdc
commit 52a3df2d3b

View File

@@ -121,28 +121,28 @@
}
]
},
# win-mingw: {
# runs-on: windows-2019,
# steps: [
# {
# name: checkout,
# uses: actions/checkout@v2,
# with: { submodules: true }
# },
# {
# name: install build dependencies,
# run: 'vcpkg install libxml2 && pip install scons'
# },
# {
# name: install dependencies,
# run: '.\.github\workflows\scripts\win\install-deps.bat x64'
# },
# {
# name: build and unit test,
# run: scons toolset=mingw
# }
# ]
# },
win-mingw: {
runs-on: windows-2019,
steps: [
{
name: checkout,
uses: actions/checkout@v2,
with: { submodules: true }
},
{
name: install build dependencies,
run: 'vcpkg install libxml2 && pip install scons'
},
{
name: install dependencies,
run: '.\.github\workflows\scripts\win\install-deps.bat x64'
},
{
name: build and unit test,
run: scons toolset=mingw
}
]
},
linux: {
runs-on: ubuntu-20.04,
steps: [