From 24589cddb0e6732a6903f6f6d5b7e96896093e62 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 22 Nov 2020 19:59:19 +0100 Subject: [PATCH] Add basic CI for mingw-w64 32/64 bit This only builds things with meson and no tests are run. --- .github/workflows/test.yml | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..95e428b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,39 @@ +name: test + +on: + push: + pull_request: + +jobs: + + msys2: + runs-on: windows-latest + strategy: + fail-fast: false + matrix: + include: [ + { msystem: MINGW64, arch: x86_64}, + { msystem: MINGW32, arch: i686} + ] + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: setup-msys2 + uses: msys2/setup-msys2@v2 + with: + msystem: ${{ matrix.msystem }} + update: true + install: >- + mingw-w64-${{ matrix.arch }}-meson + mingw-w64-${{ matrix.arch }}-ninja + mingw-w64-${{ matrix.arch }}-gcc + + - name: Build + shell: msys2 {0} + run: | + # the code assumes msvc style printf atm + export CFLAGS=-D__USE_MINGW_ANSI_STDIO=0 + + meson -Dtests=false _build + meson compile -C _build \ No newline at end of file