debian-mirror-gitlab/lib/gitlab/ci/templates/Swift.gitlab-ci.yml

31 lines
956 B
YAML
Raw Normal View History

2016-09-29 09:46:39 +05:30
# Lifted from: https://about.gitlab.com/2016/03/10/setting-up-gitlab-ci-for-ios-projects/
2018-11-20 20:47:30 +05:30
# This file assumes an own GitLab CI runner, setup on a macOS system.
2016-09-29 09:46:39 +05:30
stages:
- build
- archive
build_project:
stage: build
script:
- xcodebuild clean -project ProjectName.xcodeproj -scheme SchemeName | xcpretty
2018-10-15 14:42:47 +05:30
- xcodebuild test -project ProjectName.xcodeproj -scheme SchemeName -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.3' | xcpretty -s
2016-09-29 09:46:39 +05:30
tags:
2018-10-15 14:42:47 +05:30
- ios_11-3
- xcode_9-3
- macos_10-13
2016-09-29 09:46:39 +05:30
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:
2018-10-15 14:42:47 +05:30
- ios_11-3
- xcode_9-3
- macos_10-13