Add a GitHub action for cross-compiling to MinGW via CMake.

This commit is contained in:
Etienne Dechamps 2020-10-18 11:09:40 +02:00 committed by Ross Bencina
commit 5bc01421c8
2 changed files with 30 additions and 0 deletions

View file

@ -17,3 +17,16 @@ jobs:
run: ./configure
- name: make
run: make
build-cmake-mingw:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: apt
run: sudo apt-get install mingw-w64
- name: cmake
run: cmake -DCMAKE_TOOLCHAIN_FILE=i686-w64-mingw32.cmake .
- name: make
run: make