Commit e25aea5ba14ae16ebeb7b269ba37c444e22a2436
1 parent
a949a10b
Exists in
master
and in
1 other branch
Adding win32 workflow.
Showing
1 changed file
with
24 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,24 @@ | @@ -0,0 +1,24 @@ | ||
1 | +name: MSYS2 | ||
2 | +on: | ||
3 | + pull_request: | ||
4 | + branches: | ||
5 | + - master | ||
6 | + | ||
7 | +jobs: | ||
8 | + msys2-ucrt64: | ||
9 | + runs-on: windows-latest | ||
10 | + defaults: | ||
11 | + run: | ||
12 | + shell: msys2 {0} | ||
13 | + steps: | ||
14 | + - uses: actions/checkout@v3 | ||
15 | + - uses: msys2/setup-msys2@v2 | ||
16 | + with: | ||
17 | + msystem: UCRT64 | ||
18 | + update: true | ||
19 | + install: git mingw-w64-ucrt-x86_64-gcc automake autoconf make git pkgconf gettext-devel libtool xz mingw-w64-x86_64-openssl mingw-w64-x86_64-gtk3 mingw-w64-x86_64-imagemagick mingw-w64-x86_64-optipng mingw-w64-x86_64-inkscape | ||
20 | + - name: CI-Build | ||
21 | + run: | | ||
22 | + echo 'Running in MSYS2!' | ||
23 | + ./win/ci-build.sh | ||
24 | + |