forked from core-plot/core-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (28 loc) · 1.62 KB
/
Copy path.travis.yml
File metadata and controls
35 lines (28 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: objective-c
osx_image: xcode12
jobs:
include:
# Mac framework
- env: PROJECT=framework/CorePlot TARGET="CorePlot Mac" SDK=macosx
- env: PROJECT=framework/CorePlot TARGET="UnitTests Mac" SDK=macosx
# iOS framework
- env: PROJECT=framework/CorePlot TARGET="CorePlot iOS" SDK=iphonesimulator
- env: PROJECT=framework/CorePlot TARGET="UnitTests iOS" SDK=iphonesimulator
# tvOS framework
- env: PROJECT=framework/CorePlot TARGET="CorePlot tvOS" SDK=appletvsimulator
- env: PROJECT=framework/CorePlot TARGET="UnitTests tvOS" SDK=appletvsimulator
# Mac examples
- env: PROJECT=examples/CorePlotGallery/Plot_Gallery TARGET="Plot Gallery-Mac" SDK=macosx
- env: PROJECT=examples/CPTTestApp/CPTTestApp TARGET="CPTTestApp" SDK=macosx
- env: PROJECT=examples/DatePlot/DatePlot TARGET="DatePlot" SDK=macosx
- env: PROJECT=examples/DropPlot/DropPlot TARGET="DropPlot" SDK=macosx
- env: PROJECT=examples/MinorTickLabels/minorTickFormatter TARGET="minorTickFormatter" SDK=macosx
- env: PROJECT=examples/RangePlot/RangePlot TARGET="RangePlot" SDK=macosx
# iOS examples
- env: PROJECT=examples/CorePlotGallery/Plot_Gallery TARGET="Plot Gallery-iOS" SDK=iphonesimulator
- env: PROJECT=examples/CPTTestApp-iPad/CPTTestApp-iPad TARGET="CPTTestApp-iPad" SDK=iphonesimulator
- env: PROJECT=examples/CPTTestApp-iPhone/CPTTestApp-iPhone TARGET="CPTTestApp-iPhone" SDK=iphonesimulator
# tvOS examples
- env: PROJECT=examples/CorePlotGallery/Plot_Gallery TARGET="Plot Gallery-tvOS" SDK=appletvsimulator
# Build script
script: xcodebuild -project "${PROJECT}.xcodeproj" -target "${TARGET}" -sdk ${SDK} -configuration Release