Skip to content

Commit ee2a690

Browse files
Add skipPackagePluginValidation flag to xcodebuild commands in CI workflows
1 parent 9df2e44 commit ee2a690

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ jobs:
8888
run: |
8989
xcodebuild \
9090
-scheme ShitLib build \
91-
-destination 'platform=macOS,arch=arm64' \
91+
-destination "platform=macOS,arch=arm64" \
92+
-skipPackagePluginValidation
9293
9394
- name: Perform CodeQL Analysis
9495
uses: github/codeql-action/analyze@v3

.github/workflows/swift.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ jobs:
5757
-scheme ShitLib \
5858
-destination "$DEST" \
5959
-derivedDataPath DerivedData \
60-
-enableCodeCoverage YES
60+
-enableCodeCoverage YES \
61+
-skipPackagePluginValidation
6162
6263
- name: Export coverage report as Lcov
6364
run: |

0 commit comments

Comments
 (0)