2019-11-25 16:42:48 +01:00
|
|
|
name: Windows cross build with MXE
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-04-13 10:56:23 +02:00
|
|
|
- uses: actions/checkout@v2
|
2019-11-25 16:42:48 +01:00
|
|
|
- name: Cross build with MXE
|
|
|
|
run: cd $GITHUB_WORKSPACE && ms-windows/mxe/build.sh
|
|
|
|
- name: Rename artifact
|
|
|
|
run: cd $GITHUB_WORKSPACE && mv qgis-mxe-release-*.zip qgis-mxe-release.zip
|
|
|
|
- name: Upload build
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2019-11-30 18:19:59 +01:00
|
|
|
name: QGIS for Windows 64bit
|
2019-11-25 16:42:48 +01:00
|
|
|
path: qgis-mxe-release.zip
|
|
|
|
|