Skip to content

Commit

Permalink
[추가] -skipMacroValidation 옵션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
x-0o0 committed Dec 25, 2023
1 parent 9cf9e52 commit 101fbd6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/BUILD_APP_TARGET_iOS17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: KuringApp 빌드
run: |
cd KuringApp
xcodebuild build -scheme KuringApp -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 14 Pro'
xcodebuild build -scheme KuringApp -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 14 Pro' -skipMacroValidation
# 빌드 성공시 커멘트
- name: Add Build comment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/BUILD_PACKAGE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: KuringModulePackage 빌드
run: |
cd KuringPackage
xcodebuild build -scheme App -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14 Pro'
xcodebuild build -scheme App -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14 Pro' -skipMacroValidation
# 빌드 성공시 커멘트
- name: Add Build comment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/TEST_APP_TARGET_iOS17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: KuringApp 테스트
run: |
cd KuringApp
xcodebuild clean test -scheme KuringApp -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 14 Pro'
xcodebuild clean test -scheme KuringApp -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 14 Pro' -skipMacroValidation
# 테스트 성공시 커멘트
- name: Add Build comment
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/TEST_PACKAGE_TARGET_iOS17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
- name: NoticeFeaturesTests 테스트
run: |
cd KuringPackage
xcodebuild test -scheme NoticeFeaturesTests -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 15 Pro'
xcodebuild test -scheme NoticeFeaturesTests -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 15 Pro' -skipMacroValidation
# SubscriptionFeaturesTests 스킴을 테스트합니다.
- name: SubscriptionFeaturesTests 테스트
run: |
cd KuringPackage
xcodebuild test -scheme SubscriptionFeaturesTests -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 15 Pro'
xcodebuild test -scheme SubscriptionFeaturesTests -destination 'platform=iOS Simulator,OS=17.0,name=iPhone 15 Pro' -skipMacroValidation
# 테스트 성공시 커멘트
- name: Add Build comment
Expand Down

0 comments on commit 101fbd6

Please sign in to comment.