2021-06-25 15:26:42 +00:00
|
|
|
name: Linux MinGW
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
env:
|
|
|
|
QTIFWVER: 4.1.0
|
|
|
|
ARCH_ROOT_DATE: 2021.05.01
|
|
|
|
ARCH_ROOT_URL: https://mirror.rackspace.com/archlinux
|
|
|
|
NSIS_VERSION: 3.06.1
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-06-25 15:48:53 +00:00
|
|
|
chmod +x ports/ci/linux-mingw/install_deps.sh
|
|
|
|
./ports/ci/linux-mingw/install_deps.sh
|
2021-06-25 15:26:42 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2021-06-25 15:48:53 +00:00
|
|
|
chmod +x ports/ci/linux-mingw/build.sh
|
|
|
|
./ports/ci/linux-mingw/build.sh
|
2021-06-25 15:26:42 +00:00
|
|
|
- name: Deploy
|
|
|
|
run: |
|
2021-06-25 15:48:53 +00:00
|
|
|
chmod +x ports/ci/linux-mingw/deploy.sh
|
|
|
|
./ports/ci/linux-mingw/deploy.sh
|
2021-06-25 15:26:42 +00:00
|
|
|
- name: Upload
|
|
|
|
run: |
|
2021-06-25 15:48:53 +00:00
|
|
|
chmod +x ports/ci/linux-mingw/upload.sh
|
|
|
|
./ports/ci/linux-mingw/upload.sh
|