-
Notifications
You must be signed in to change notification settings - Fork 17
Add GitHub Actions workflow for Xcode build and analyze #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,30 @@ | ||||||||||||||||||||||||||||||
| name: Xcode - Build and Analyze | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| on: | ||||||||||||||||||||||||||||||
| push: | ||||||||||||||||||||||||||||||
| branches: [ "master" ] | ||||||||||||||||||||||||||||||
| pull_request: | ||||||||||||||||||||||||||||||
| branches: [ "master" ] | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| jobs: | ||||||||||||||||||||||||||||||
| build: | ||||||||||||||||||||||||||||||
| name: Build and analyse default scheme using xcodebuild command | ||||||||||||||||||||||||||||||
| runs-on: macos-latest | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| steps: | ||||||||||||||||||||||||||||||
| - name: Checkout | ||||||||||||||||||||||||||||||
| uses: actions/checkout@v4 | ||||||||||||||||||||||||||||||
| - name: Set Default Scheme | ||||||||||||||||||||||||||||||
| run: | | ||||||||||||||||||||||||||||||
| 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]} | ||||||||||||||||||||||||||||||
|
Comment on lines
+27
to
+30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win Quote variables and simplify the workspace/project detection.
🛡️ Proposed fix 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]}
+ if [ "$scheme" = "default" ]; then scheme=$(cat default); fi
+ if [ -n "$(ls -A | grep -i '\.xcworkspace$')" ]; then
+ filetype_parameter="workspace"
+ file_to_build="$(ls -A | grep -i '\.xcworkspace$' | head -1)"
+ else
+ filetype_parameter="project"
+ file_to_build="$(ls -A | grep -i '\.xcodeproj$' | head -1)"
+ 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]}📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.