Update msys2.yml

This commit is contained in:
ksherlock 2020-11-17 15:51:01 -05:00 committed by GitHub
parent e7720a69bb
commit 66cf463cbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -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'