-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy path.travis.yml
More file actions
21 lines (18 loc) · 768 Bytes
/
.travis.yml
File metadata and controls
21 lines (18 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
os: osx
osx_image: xcode13.2
language: objective-c
git:
submodules: true
depth: 1
before_install:
- cmake --version
- make --version
- brew install chargepoint/xcparse/xcparse
- npm install junit-cli-report-viewer
script:
- set -o pipefail && xcodebuild -project v8ios.xcodeproj -scheme TestRunner -resultBundlePath $HOME/test_results -resultBundleVersion 3 -destination platform\=iOS\ Simulator,OS\=15.2,name\=iPhone\ 11\ Pro\ Max build test | xcpretty
- set -e && xcparse attachments $HOME/test_results.xcresult $HOME
- set -e && find $HOME -name "*junit*.xml" -maxdepth 1 -exec npx junit-cli-report-viewer {} \;
#xcode_project: v8ios.xcodeproj
#xcode_scheme: TestRunner
#xcode_destination: platform=iOS Simulator,OS=13.0,name=iPhone 11 Pro Max