mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-11 19:41:30 +00:00
198096e30e
It's frustrating that I can't get the translation.qrc support the translation files to be created in the build directory. Having them as part of the sources just feels wrong. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
32 lines
891 B
YAML
32 lines
891 B
YAML
name: iOS
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
mobileBuild:
|
|
runs-on: macOS-10.15
|
|
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: build Subsurface-mobile for iOS
|
|
run: |
|
|
mkdir -p $HOME/build
|
|
cd $HOME/build
|
|
ln -s $HOME/Qt Qt
|
|
echo "build for simulator"
|
|
bash -x $GITHUB_WORKSPACE/packaging/ios/build.sh -simulator
|