|
@@ -17,7 +17,7 @@ jobs:
|
|
|
matrix:
|
|
|
destination: ["OS=16.0,name=iPhone 14 Pro"] #, "OS=14.4,name=iPhone 12 Pro", "OS=12.4,name=iPhone XS", "OS=11.4,name=iPhone X", "OS=10.3.1,name=iPhone SE"]
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v3
|
|
|
- name: iOS - ${{ matrix.destination }}
|
|
|
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "Charts.xcworkspace" -scheme "DGCharts" -destination "${{ matrix.destination }}" clean test | xcpretty
|
|
|
|
|
@@ -29,7 +29,7 @@ jobs:
|
|
|
matrix:
|
|
|
destination: ["OS=16.0,name=Apple TV 4K (2nd generation)"]
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v3
|
|
|
- name: tvOS - ${{ matrix.destination }}
|
|
|
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "Charts.xcworkspace" -scheme "DGCharts" -destination "${{ matrix.destination }}" clean test | xcpretty
|
|
|
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
env:
|
|
|
DEVELOPER_DIR: /Applications/Xcode_14.0.app/Contents/Developer
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v3
|
|
|
- name: macOS
|
|
|
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "Charts.xcworkspace" -scheme "ChartsDemo-macOS" -destination "platform=macOS" clean build | xcpretty
|
|
|
|
|
@@ -50,7 +50,7 @@ jobs:
|
|
|
matrix:
|
|
|
destination: ["OS=16.0,name=iPhone 14 Pro"] #, "OS=14.4,name=iPhone 12 Pro", "OS=12.4,name=iPhone XS", "OS=11.4,name=iPhone X", "OS=10.3.1,name=iPhone SE"]
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v3
|
|
|
- name: iOS - ${{ matrix.destination }}
|
|
|
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace "Charts.xcworkspace" -scheme "ChartsDemo-iOS" -destination "${{ matrix.destination }}" clean build | xcpretty
|
|
|
|
|
@@ -60,6 +60,6 @@ jobs:
|
|
|
env:
|
|
|
DEVELOPER_DIR: /Applications/Xcode_14.0.app/Contents/Developer
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v3
|
|
|
- name: SPM Test
|
|
|
run: swift build -c debug
|