From e25aea5ba14ae16ebeb7b269ba37c444e22a2436 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Tue, 10 Jan 2023 17:46:57 -0300 Subject: [PATCH] Adding win32 workflow. --- .github/workflows/msys2.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+), 0 deletions(-) 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..63afa18 --- /dev/null +++ b/.github/workflows/msys2.yml @@ -0,0 +1,24 @@ +name: MSYS2 +on: + pull_request: + branches: + - master + +jobs: + msys2-ucrt64: + runs-on: windows-latest + defaults: + run: + shell: msys2 {0} + steps: + - uses: actions/checkout@v3 + - uses: msys2/setup-msys2@v2 + with: + msystem: UCRT64 + update: true + 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 + - name: CI-Build + run: | + echo 'Running in MSYS2!' + ./win/ci-build.sh + -- libgit2 0.21.2