wdc-utils/.github/workflows/msys2.yml
2020-11-17 22:26:48 -05:00

34 lines
756 B
YAML

name: MSYS2 build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
msys: [MSYS2, MINGW32, MINGW64]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
path-type: strict
install: make gcc mingw32/mingw-w64-i686-gcc mingw64/mingw-w64-x86_64-gcc
# Runs a single command using the runners shell
- name: Make ${{ matrix.msys }}
run: |
set MSYSTEM=${{ matrix.msys }}
msys2 -c 'make'
- name: Artifacts
uses: actions/upload-artifact@v2
with:
name: binaries - ${{ matrix.msys }}
path: "*.exe"