From b8c311b41840f0c7c13b96ecc9faff02f9962165 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Wed, 8 May 2024 13:56:00 +0200 Subject: CI: Added GitHub Actions MSYS2 build Similar to the AppVeyor build, but thanks to caching and faster compilation this build arrives about 4 times faster. This also fixes the snap build, which now has to check out the enet submodule. --- .github/workflows/packages.yml | 63 ++++++++++++++++++++++++++++++++++++++++++ .github/workflows/snap.yml | 18 ------------ 2 files changed, 63 insertions(+), 18 deletions(-) create mode 100644 .github/workflows/packages.yml delete mode 100644 .github/workflows/snap.yml diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml new file mode 100644 index 00000000..779491ae --- /dev/null +++ b/.github/workflows/packages.yml @@ -0,0 +1,63 @@ +name: Packages +on: [push, pull_request] + +jobs: + msys2-ucrt64: + runs-on: windows-latest + defaults: + run: + shell: msys2 {0} + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - uses: msys2/setup-msys2@v2 + with: + msystem: UCRT64 + update: true + install: > + git + mingw-w64-ucrt-x86_64-gcc + mingw-w64-ucrt-x86_64-cmake + mingw-w64-ucrt-x86_64-physfs + mingw-w64-ucrt-x86_64-curl-winssl + mingw-w64-ucrt-x86_64-SDL2_image + mingw-w64-ucrt-x86_64-SDL2_mixer + mingw-w64-ucrt-x86_64-SDL2_net + mingw-w64-ucrt-x86_64-SDL2_ttf + mingw-w64-ucrt-x86_64-libxml2 + mingw-w64-ucrt-x86_64-nsis + + - name: CI-Build + run: | + cmake -B build . -DUSE_SYSTEM_GUICHAN=OFF -DCMAKE_BUILD_TYPE=Release + cmake --build build + pushd build + cpack + + - uses: actions/upload-artifact@v4 + with: + name: Mana installer for Windows (64-bit) + path: build/Mana-*-win64.exe + + snap: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - uses: snapcore/action-build@v1 + id: snapcraft + + - uses: actions/upload-artifact@v4 + if: ${{ failure() }} + with: + name: snapcraft.log + path: '/home/runner/.local/state/snapcraft/log/*.log' + + - uses: actions/upload-artifact@v4 + with: + name: mana_amd64.snap + path: ${{ steps.snapcraft.outputs.snap }} diff --git a/.github/workflows/snap.yml b/.github/workflows/snap.yml deleted file mode 100644 index 8ce2750b..00000000 --- a/.github/workflows/snap.yml +++ /dev/null @@ -1,18 +0,0 @@ -on: push - -jobs: - snap: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: snapcore/action-build@v1 - id: snapcraft - - uses: actions/upload-artifact@v4 - if: always() - with: - name: snapcraft.log - path: '/home/runner/.local/state/snapcraft/log/*.log' - - uses: actions/upload-artifact@v4 - with: - name: mana_amd64.snap - path: ${{ steps.snapcraft.outputs.snap }} -- cgit v1.2.3-60-g2f50