Dirk Hohndel a07c2feb95 GitHub Actions: run them on pull requests as well
I wonder if this will cause issues where the actions sometimes run
twice.  But we'll deal with that rather than dealing with not having the
tests on pull requests.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2019-10-25 14:13:15 +02:00

49 lines
1.5 KiB
YAML

name: Windows
on: [push, pull_request]
jobs:
buildInContainer:
runs-on: ubuntu-latest
container:
image: docker://dirkhh/mxe-build-container:0.9
steps:
- name: checkout sources
uses: actions/checkout@v1
- name: get other dependencies
run: |
echo "creating the link from /win/subsurface"
cd /win
ln -s /__w/subsurface/subsurface .
ls -l
ls -l subsurface/scripts
echo "installing missing container components"
apt-get install -y ca-certificates libtool
echo "downloading sources for fresh build"
bash subsurface/scripts/get-dep-lib.sh single . libzip
bash subsurface/scripts/get-dep-lib.sh single . hidapi
bash subsurface/scripts/get-dep-lib.sh single . googlemaps
bash subsurface/scripts/get-dep-lib.sh single . grantlee
bash subsurface/scripts/get-dep-lib.sh single . mdbtools
- name: run build
run: |
cd /win
bash -x subsurface/.github/workflows/scripts/windows-in-container-build.sh 2>&1 | tee build.log
grep "Built target installer" build.log
- name: create CI release
uses: ./.github/actions/release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPO: ${{ github.repository }}
REF: ${{ github.ref }}
COMMIT: ${{ github.sha }}
BIN1: ./subsurface-installer.exe
BIN2: ./subsurface.exe
BIN3: ./subsurface.exe.debug
BIN4: ./smtk2ssrf-installer.exe
BIN5: ./smtk2ssrf.exe