2019-10-19 09:37:28 +00:00
|
|
|
name: iOS
|
2024-05-11 05:33:54 +00:00
|
|
|
|
2019-10-26 01:04:01 +00:00
|
|
|
on:
|
|
|
|
push:
|
2024-01-20 12:07:33 +00:00
|
|
|
paths-ignore:
|
|
|
|
- scripts/docker/**
|
2019-10-26 01:04:01 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2024-01-20 12:07:33 +00:00
|
|
|
paths-ignore:
|
|
|
|
- scripts/docker/**
|
2019-10-26 01:04:01 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2019-10-19 09:37:28 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-05-09 01:19:21 +00:00
|
|
|
build:
|
2024-07-13 11:38:49 +00:00
|
|
|
runs-on: macOS-12
|
2019-10-19 09:37:28 +00:00
|
|
|
steps:
|
2024-07-13 11:38:49 +00:00
|
|
|
- name: switch to Xcode 13
|
|
|
|
run: sudo xcode-select -s "/Applications/Xcode_13.1.app"
|
2024-01-05 04:44:31 +00:00
|
|
|
|
2019-10-19 09:37:28 +00:00
|
|
|
- name: checkout sources
|
2024-05-11 05:33:54 +00:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: recursive
|
2024-01-05 04:44:31 +00:00
|
|
|
|
2019-10-19 09:37:28 +00:00
|
|
|
- name: setup Homebrew
|
2024-07-13 11:38:49 +00:00
|
|
|
run: brew install automake
|
2024-01-05 04:44:31 +00:00
|
|
|
|
2024-05-09 01:19:21 +00:00
|
|
|
- name: checkout Qt resources
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
repository: subsurface/qt-ios
|
|
|
|
ref: main
|
|
|
|
path: qt-ios
|
2024-01-05 04:44:31 +00:00
|
|
|
|
2024-05-11 05:33:54 +00:00
|
|
|
- name: set the version information
|
2024-05-09 01:19:21 +00:00
|
|
|
id: version_number
|
2024-05-11 05:33:54 +00:00
|
|
|
uses: ./.github/actions/manage-version
|
|
|
|
with:
|
|
|
|
nightly-builds-secret: ${{ secrets.NIGHTLY_BUILDS }}
|
2024-01-05 04:44:31 +00:00
|
|
|
|
2019-10-19 09:37:28 +00:00
|
|
|
- name: build Subsurface-mobile for iOS
|
2024-05-11 05:33:54 +00:00
|
|
|
env:
|
|
|
|
VERSION: ${{ steps.version_number.outputs.version }}
|
2019-10-19 09:37:28 +00:00
|
|
|
run: |
|
2024-05-11 05:33:54 +00:00
|
|
|
cd ..
|
2024-05-09 01:19:21 +00:00
|
|
|
git config --global --add safe.directory $GITHUB_WORKSPACE
|
|
|
|
git config --global --add safe.directory $GITHUB_WORKSPACE/libdivecomputer
|
|
|
|
export IOS_QT=$GITHUB_WORKSPACE/qt-ios
|
2020-11-19 04:09:53 +00:00
|
|
|
echo "build for simulator"
|
|
|
|
bash -x $GITHUB_WORKSPACE/packaging/ios/build.sh -simulator
|
2024-05-09 01:19:21 +00:00
|
|
|
# We need this in order to be able to access the file and publish it
|
2024-05-11 05:33:54 +00:00
|
|
|
mv build-Subsurface-mobile-Qt_5_14_1_for_iOS-Release/Release-iphonesimulator/Subsurface-mobile.app $GITHUB_WORKSPACE/Subsurface-mobile-$VERSION.app
|
2024-05-09 01:19:21 +00:00
|
|
|
|
|
|
|
- name: publish artifacts
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: Subsurface-iOS-${{ steps.version_number.outputs.version }}
|
|
|
|
path: Subsurface-mobile-*.app
|