Skip to content

Commit c67179f

Browse files
committed
Update
1 parent 4d6f99a commit c67179f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/github-actions-ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,27 @@ jobs:
2020
- name: Build PinLayout-tvOS
2121
run: set -o pipefail && xcodebuild build -project PinLayout.xcodeproj -scheme PinLayout-tvOS -sdk appletvsimulator15.2 -destination 'platform=tvOS Simulator,name=Apple TV 4K (2nd generation),OS=15.2' | xcpretty
2222

23+
- name: Build PinLayout-macOS
24+
run: set -o pipefail && xcodebuild build -project PinLayout.xcodeproj -scheme PinLayout-macOS -sdk macosx12.1 | xcpretty
25+
26+
- name: Build PinLayoutSample
27+
run: set -o pipefail && xcodebuild build -workspace PinLayout.xcworkspace -scheme PinLayoutSample -sdk iphonesimulator15.2 -destination 'platform=iOS Simulator,name=iPhone 8,OS=15.2' | xcpretty
28+
29+
- name: iOS unit test
30+
run: set -o pipefail && xcodebuild build test -workspace PinLayout.xcworkspace -scheme PinLayout-iOS -sdk iphonesimulator15.2 -destination 'platform=iOS Simulator,name=iPhone 8,OS=15.2' | xcpretty
31+
32+
- name: tvOS unit test
33+
run: set -o pipefail && xcodebuild build test -workspace PinLayout.xcworkspace -scheme PinLayout-tvOS -sdk appletvos15.2 -destination 'platform=tvOS Simulator,name=Apple TV 4K (2nd generation),OS=15.2 | xcpretty
34+
35+
36+
37+
# echo "==============================="
38+
# echo "macOS unit test"
39+
# echo "==============================="
40+
# xcodebuild test -workspace PinLayout.xcworkspace -scheme PinLayout-macOS \
41+
# -derivedDataPath $DERIVED_DATA -sdk macosx12.1 \
42+
# | xcpretty
43+
2344
- run: echo "🍏 This job's status is ${{ job.status }}."
2445

2546
# Build:

0 commit comments

Comments
 (0)