-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy path.travis.yml
24 lines (24 loc) · 1.67 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: swift
osx_image: xcode12.2
before_script:
- "curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash"
matrix:
include:
- name: "NeedleFoundationTests"
script: xcodebuild test -project NeedleFoundation.xcodeproj -scheme NeedleFoundation -destination 'platform=iOS Simulator,OS=13.2.2,name=iPhone 11'
- name: "NeedleGeneratorTests"
script: cd Generator && swift test -Xswiftc -DDEBUG
- name: "NeedleGeneratorBinary"
script: cd Generator && swift build -c release
- name: "NeedleSampleMVCApp"
script: xcodebuild build -project Sample/MVC/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToe -destination 'platform=iOS Simulator,OS=13.2.2,name=iPhone 11'
- name: "NeedleSampleMVCTests"
script: xcodebuild test -project Sample/MVC/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToeTests -destination 'platform=iOS Simulator,OS=13.2.2,name=iPhone 11'
- name: "NeedleSamplePluginizedApp"
script: xcodebuild build -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToe -destination 'platform=iOS Simulator,OS=13.2.2,name=iPhone 11'
- name: "NeedleSamplePluginizedScoreSheetTests"
script: xcodebuild test -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme ScoreSheetTests -destination 'platform=iOS Simulator,OS=13.2.2,name=iPhone 11'
- name: "NeedleSamplePluginizedTicTacToeCoreTests"
script: xcodebuild test -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToeCoreTests -destination 'platform=iOS Simulator,OS=13.2.2,name=iPhone 11'
script:
- fossa