From d66de5727316afc556229e34b3ba44eb3e950755 Mon Sep 17 00:00:00 2001 From: ksherlock Date: Tue, 17 Nov 2020 15:45:51 -0500 Subject: [PATCH] Create msys2.yml --- .github/workflows/msys2.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/msys2.yml diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml new file mode 100644 index 0000000..715a71f --- /dev/null +++ b/.github/workflows/msys2.yml @@ -0,0 +1,22 @@ +name: MSYS2 build + +on: [push, pull_request] + +jobs: + build: + runs-on: windows-latest + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + - name: Setup MSYS2 + uses: msys2/setup-msys2@v2 + with: + path-type: strict + + # Runs a single command using the runners shell + - name: Make MINGW32 + run: | + set MSYSTEM=MINGW32 + msys2 -c 'make'