d2cc841c55
This commit adds CI job that validates all `*.yml` with `yamllint`. This commit fixes all offenses present in repository.
32 lines
978 B
YAML
32 lines
978 B
YAML
# Lifted from: https://about.gitlab.com/2016/03/10/setting-up-gitlab-ci-for-ios-projects/
|
|
# This file assumes an own GitLab CI runner, setup on a macOS system.
|
|
stages:
|
|
- build
|
|
- test
|
|
- archive
|
|
- deploy
|
|
|
|
build_project:
|
|
stage: build
|
|
script:
|
|
- xcodebuild clean -project ProjectName.xcodeproj -scheme SchemeName | xcpretty
|
|
- xcodebuild test -project ProjectName.xcodeproj -scheme SchemeName -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.3' | xcpretty -s
|
|
tags:
|
|
- ios_11-3
|
|
- xcode_9-3
|
|
- macos_10-13
|
|
|
|
archive_project:
|
|
stage: archive
|
|
script:
|
|
- xcodebuild clean archive -archivePath build/ProjectName -scheme SchemeName
|
|
- xcodebuild -exportArchive -exportFormat ipa -archivePath "build/ProjectName.xcarchive" -exportPath "build/ProjectName.ipa" -exportProvisioningProfile "ProvisioningProfileName"
|
|
only:
|
|
- master
|
|
artifacts:
|
|
paths:
|
|
- build/ProjectName.ipa
|
|
tags:
|
|
- ios_11-3
|
|
- xcode_9-3
|
|
- macos_10-13
|