File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,19 @@ jobs:
27
27
- name : Build project using Matrix build system
28
28
run : |
29
29
if [ "${{ matrix.os }}" == "iOS" ]; then
30
- xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build
30
+ xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
31
+ CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" build
31
32
else
32
- xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build
33
+ xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
34
+ CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" build
33
35
fi
34
36
35
37
- name : Run Tests
36
38
run : |
37
39
if [ "${{ matrix.os }}" == "iOS" ]; then
38
- xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
40
+ xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
41
+ CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS=""
39
42
else
40
- xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
43
+ xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
44
+ CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS=""
41
45
fi
You can’t perform that action at this time.
0 commit comments