Browse Source

Tweaks to msys2

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.0
falkTX 3 years ago
parent
commit
1943a5ffa2
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      .github/workflows/build.yml

+ 8
- 2
.github/workflows/build.yml View File

@@ -26,12 +26,15 @@ jobs:

msys2-i686:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: mingw32
install: mingw-w64-i686-toolchain
install: base-devel make mingw-w64-i686-toolchain
- name: make features
run: make features
- name: make
@@ -39,12 +42,15 @@ jobs:

msys2-x86_64:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
install: mingw-w64-x86_64-toolchain
install: base-devel make mingw-w64-x86_64-toolchain
- name: make features
run: make features
- name: make


Loading…
Cancel
Save