mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from v1 to v2.2.2. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v1...e448a9b857ee2131e752b06002bf0e093c65e571) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
923 B
YAML
46 lines
923 B
YAML
name: Windows cross build with MXE
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release-**
|
|
paths:
|
|
- 'src/**'
|
|
- 'external/**'
|
|
- 'python/**'
|
|
- 'tests/**'
|
|
- 'ms-windows/**'
|
|
- 'CMakeLists.txt'
|
|
- '.github/workflows/mxe.yml'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- release-**
|
|
paths:
|
|
- 'src/**'
|
|
- 'external/**'
|
|
- 'python/**'
|
|
- 'tests/**'
|
|
- 'ms-windows/**'
|
|
- 'CMakeLists.txt'
|
|
- '.github/workflows/mxe.yml'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- 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@v2.2.2
|
|
with:
|
|
name: QGIS for Windows 64bit
|
|
path: qgis-mxe-release.zip
|
|
|