From 66cf463cbf39d900bb1bba1e700437e98931dad0 Mon Sep 17 00:00:00 2001 From: ksherlock Date: Tue, 17 Nov 2020 15:51:01 -0500 Subject: [PATCH] Update msys2.yml --- .github/workflows/msys2.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml index 715a71f..f3114dd 100644 --- a/.github/workflows/msys2.yml +++ b/.github/workflows/msys2.yml @@ -14,9 +14,20 @@ jobs: uses: msys2/setup-msys2@v2 with: path-type: strict + install: base-devel # Runs a single command using the runners shell - name: Make MINGW32 run: | set MSYSTEM=MINGW32 msys2 -c 'make' + + - name: Make MINGW64 + run: | + set MSYSTEM=MINGW64 + msys2 -c 'make' + + - name: Make MSYS2 + run: | + set MSYSTEM=MSYS2 + msys2 -c 'make'