This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/.github/workflows/ios-check.yaml
Roman Tsisyk bd0e3adbe1 [ci] Fix formatting
Please run `npm i; npm run format:github` to reformat.

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
2021-08-14 10:24:09 +03:00

69 lines
1.7 KiB
YAML

name: iOS Check
on:
workflow_dispatch: # Manual trigger
pull_request:
paths-ignore:
- .github/**
- '**/*_tests/**'
- '**/CMakeLists.txt'
- CONTRIBUTORS
- LICENSE
- NOTICE
- README.md
- android/**
- docs/**
- generator/**
- packaging/**
- pyhelpers/**
- qt*/**
- skin_generator/**
- track_generator/**
jobs:
ios-check:
name: Build iOS Debug
runs-on: macos-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Parallel submodules checkout
shell: bash
run: git submodule update --init --recursive --jobs=4
- name: Configure
shell: bash
run: ./configure.sh
- name: Compile
shell: bash
# Just check compilation
run: |
# Run twice as a workaround for a dependency problem.
# https://github.com/organicmaps/organicmaps/issues/133
xcodebuild \
-workspace xcode/omim.xcworkspace \
-scheme OMaps \
-configuration Debug build \
'generic/platform=iOS' \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
|xcpretty || true
xcodebuild \
-workspace xcode/omim.xcworkspace \
-scheme OMaps \
-configuration Debug build \
'generic/platform=iOS' \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
|xcpretty
ios-check-metadata:
name: Check app metadata
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check metadata
run: ./tools/python/check_store_metadata.py ios