Skip to content

Commit

Permalink
. e skip signing on build server
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Oct 27, 2024
1 parent a642ad2 commit 7f3eace
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 @@ -25,7 +25,7 @@ jobs:
- name: Show current version of Xcode
run: xcodebuild -version
- name: Build
run: set -o pipefail && xcodebuild build -project '${{ matrix.run-config['project'] }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' | xcbeautify
run: set -o pipefail && xcodebuild build -project '${{ matrix.run-config['project'] }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' CODE_SIGNING_ALLOWED='NO' | xcbeautify

test:
name: Build & test
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Show current version of Xcode
run: xcodebuild -version
- name: Build & test
run: set -o pipefail && xcodebuild test -project '${{ matrix.run-config['project'] }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' | xcbeautify
run: set -o pipefail && xcodebuild test -project '${{ matrix.run-config['project'] }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' CODE_SIGNING_ALLOWED='NO' | xcbeautify

buildCarthage:
needs: [ build, test ]
Expand Down

0 comments on commit 7f3eace

Please sign in to comment.