provisioning #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Xcode - Build and Analyze | |
| on: | |
| push: | |
| branches: [ "firebase-packages" ] | |
| pull_request: | |
| branches: [ "firebase-packages" ] | |
| 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: | | |
| # rm -rf 'Bartender xcode15.xcodeproj' | |
| # xcodebuild -resolvePackageDependencies | |
| # 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: | | |
| git status | |
| ls -Al | |
| rm -rf 'Bartender xcode15.xcodeproj' | |
| touch GoogleService-Info.plist | |
| xcodebuild -allowProvisioningUpdates clean build analyze | |
| # 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]} |