From cc427103eb5982ca5fa5205afcf8d221e1e83aed Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 27 Feb 2024 11:26:46 +0100 Subject: [PATCH] mingw builder workflow --- .github/workflows/mingw.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/mingw.yml diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml new file mode 100644 index 000000000..747c8fcbe --- /dev/null +++ b/.github/workflows/mingw.yml @@ -0,0 +1,27 @@ +name: mingw-builder +on: + workflow_dispatch: + branches: [ master, stable* ] + schedule: + - cron: '30 5 * * SUN' + +jobs: + build: + runs-on: ubuntu-latest + name: "Run mingw build on ubuntu-latest" + steps: + - name: "Check out source" + uses: actions/checkout@v4 + + - name: "Prepare environment" + run: | + sudo apt-get update -q -y + sudo apt-get install -q -y \ + nasm \ + mingw-w64 \ + mingw-w64-tools \ + binutils-mingw-w64 + + - name: "Run mingw build..." + run: | + ./scripts/mingw.sh