Skip to content

Commit

Permalink
(chore): Append CODE_SIGN_ENTITLEMENTS to build_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
N3v1 committed Oct 27, 2024
1 parent 0db26da commit 653566b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,19 @@ jobs:
- name: Build project using Matrix build system
run: |
if [ "${{ matrix.os }}" == "iOS" ]; then
xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build
xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" build
else
xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build
xcodebuild -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" build
fi
- name: Run Tests
run: |
if [ "${{ matrix.os }}" == "iOS" ]; then
xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS=""
else
xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
xcodebuild test -scheme ScribbleLab -configuration ${{ matrix.configuration }} \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS=""
fi

0 comments on commit 653566b

Please sign in to comment.