mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-12-13 10:29:09 +00:00
35 lines
789 B
YAML
35 lines
789 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: |
|
|
wdcdumpobj.exe wdclink.exe
|