GzipSwift/.travis.yml

29 lines
717 B
YAML
Raw Normal View History

language: objective-c
2016-12-14 13:40:34 +08:00
osx_image: xcode8.2
2016-07-28 23:04:42 +08:00
xcode_project: Gzip.xcodeproj
matrix:
Fix Travis CI commit 023fad4e5a19ece74021a921943380b4b5f2ddc0 Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 05:13:29 2016 +0900 Clean build setting commit 64f9ecef0f3a312bc830956d12d489510cab474d Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 04:37:29 2016 +0900 Fix macOS env commit d4650cfcce2068a7c00df94687013dd8f0eee0ac Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 04:36:54 2016 +0900 Fix script commit 7f9a58a886552e5628df96649d27e9afdd660cf6 Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 04:26:37 2016 +0900 Test only on macOS commit 457fe3fd0f912f6a53270f58f5d0f3b09a97e055 Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 03:15:42 2016 +0900 Re-set env commit 958059d00e6e06aec4908b8fa3c702aab25c3dbf Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 03:01:48 2016 +0900 Simplify commit 7accbd2bebf57862f0615358fd7cdcc9ea0ba845 Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 02:54:07 2016 +0900 Add missing -destination commit 385fff27d9becd331f8949dc057f74fdf3399fe1 Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 02:53:21 2016 +0900 Add destination commit 65d0fd97f75e7d1bcdd100e24d775b6ed453626a Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 02:48:13 2016 +0900 Set code sign identifer "-" commit 4f76f8e21d5df5f87de4c4faee023bebbe6af2c1 Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 02:41:47 2016 +0900 Remove code sign setting commit 35d319d6a02ff31a7c8bb7559f994d901577a440 Author: 1024jp <1024jp@wolfrosch.com> Date: Thu Aug 18 02:34:06 2016 +0900 Fix runpath search path
2016-08-18 04:36:38 +08:00
include:
- xcode_scheme: Gzip macOS
xcode_sdk: macosx
env: DESTINATION="arch=x86_64"
- xcode_scheme: Gzip iOS
xcode_sdk: iphonesimulator
env: DESTINATION="OS=10.0,name=iPhone SE"
2015-08-02 17:30:13 +08:00
2016-08-18 17:03:43 +08:00
before_install:
2016-08-18 17:17:44 +08:00
- gem install xcpretty
- gem install xcpretty-travis-formatter
2016-11-26 04:58:21 +08:00
- gem install cocoapods
2016-08-18 17:03:43 +08:00
script:
2016-11-26 04:58:21 +08:00
- xcodebuild
-project "$TRAVIS_XCODE_PROJECT"
-scheme "$TRAVIS_XCODE_SCHEME"
-sdk "$TRAVIS_XCODE_SDK"
-destination "$DESTINATION"
clean test
| xcpretty -f `xcpretty-travis-formatter`
- pod lib lint --quick
2016-08-18 04:38:16 +08:00
after_success:
- bash <(curl -s https://codecov.io/bash)