mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
c1bfded4a7
Add a GitHub action that builds the docker image to run builds for the Windows (MXE) version of Subsurface. Also update the MXE image Dockerfile to the latest version of MXE, and add a patch to use a current version of mdbtools. Configure GitHub actions that do not build docker images to not trigger on changes to the contents of `scripts/docker/`. Signed-off-by: Michael Keller <github@ike.ch>
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
name: iOS
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- scripts/docker/**
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths-ignore:
|
|
- scripts/docker/**
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
iOSBuild:
|
|
runs-on: macOS-11
|
|
steps:
|
|
- name: switch to Xcode 11
|
|
run: sudo xcode-select -s "/Applications/Xcode_11.7.app"
|
|
|
|
- name: checkout sources
|
|
uses: actions/checkout@v1
|
|
|
|
- name: setup Homebrew
|
|
run: brew install autoconf automake libtool pkg-config
|
|
|
|
- name: set our Qt build
|
|
run: |
|
|
env
|
|
curl -L --output Qt-5.14.1-ios.tar.xz https://f002.backblazeb2.com/file/Subsurface-Travis/Qt-5.14.1-ios.tar.xz
|
|
mkdir -p $HOME/Qt
|
|
xzcat Qt-5.14.1-ios.tar.xz | tar -x -C $HOME/Qt -f -
|
|
|
|
- name: store dummy version and build number for test build
|
|
run: |
|
|
echo "100" > latest-subsurface-buildnumber
|
|
echo "CICD-test-build" > latest-subsurface-buildnumber-extension
|
|
|
|
- name: build Subsurface-mobile for iOS
|
|
env:
|
|
SUBSURFACE_REPO_PATH: ${{ github.workspace }}
|
|
run: |
|
|
cd ${SUBSURFACE_REPO_PATH}/..
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}/libdivecomputer
|
|
ln -s $HOME/Qt Qt
|
|
echo "build for simulator"
|
|
bash -x $GITHUB_WORKSPACE/packaging/ios/build.sh -simulator
|