Skip to content

Commit

Permalink
Update objective-c-xcode.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tptyphon authored Jun 9, 2024
1 parent ca64b33 commit 5a62253
Showing 1 changed file with 9 additions and 26 deletions.
35 changes: 9 additions & 26 deletions .github/workflows/objective-c-xcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,12 @@ jobs:
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Default Scheme
run: |
cd iOS
scheme_list=$(xcodebuild -list -json | tr -d "\n")
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]")
echo $default | cat >default
echo Using default scheme: $default
- name: Build
env:
scheme: ${{ 'default' }}
run: |
if [ $scheme = default ]; then scheme=$(cat default); fi
if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`
xcodebuild clean build analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" | xcpretty && exit ${PIPESTATUS[0]}
- name: xcode-build-github-action
uses: akiojin/[email protected]
with:
project: iOS/
export-method: development # optional, default is development
output-directory: .
team-id: PG2KAM3LR7


- name: xcode-build-github-action
uses: akiojin/[email protected]
with:
project: iOS/
export-method: development # optional, default is development
output-directory: .
team-id: PG2KAM3LR7


0 comments on commit 5a62253

Please sign in to comment.