From 4a52bb0dcc8730f7b8bf677c402b240b72c3df73 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Wed, 8 Sep 2021 20:26:07 -0400 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abab1b2..d18a6cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,12 @@ jobs: - run: make test buildwindows: - runs-on: windows-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + include: + - { sys: mingw64, env: x86_64 } + - { sys: mingw32, env: i686 } defaults: run: shell: msys2 {0} @@ -33,7 +38,7 @@ jobs: - uses: actions/checkout@v2 - uses: msys2/setup-msys2@v2 with: - msystem: MINGW64 - install: make mingw-w64-x86_64-toolchain + msystem: ${{matrix.sys}} + install: make mingw-w64-${{matrix.env}}-toolchain - run: make - run: make test