Skip to content

Commit

Permalink
. e Turn off code signing for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Jul 19, 2024
1 parent 04810e4 commit 4dd4d25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Get OCHamcrest
run: Frameworks/gethamcrest
- name: Build
run: xcodebuild build -project '${{ env.project }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' | xcpretty && exit ${PIPESTATUS[0]}
run: xcodebuild build -project '${{ env.project }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' CODE_SIGNING_ALLOWED='NO' | xcpretty && exit ${PIPESTATUS[0]}

test:
name: Build, test, report coverage
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Get OCHamcrest
run: Frameworks/gethamcrest
- name: Build & test
run: xcodebuild test -project '${{ env.project }}' -scheme '${{ env.scheme }}' -sdk '${{ env.sdk }}' | xcpretty && exit ${PIPESTATUS[0]}
run: xcodebuild test -project '${{ env.project }}' -scheme '${{ env.scheme }}' -sdk '${{ env.sdk }}' CODE_SIGNING_ALLOWED='NO' | xcpretty && exit ${PIPESTATUS[0]}
- name: Install gems
run: |
bundle config path vendor/bundle
Expand Down

0 comments on commit 4dd4d25

Please sign in to comment.