Skip to content

Commit e334865

Browse files
committed
add xcbeautify
1 parent 740790d commit e334865

File tree

10 files changed

+48
-16
lines changed

10 files changed

+48
-16
lines changed

.github/workflows/appcheck.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cd appcheck
20-
xcodebuild -project AppCheckSnippets.xcodeproj clean build -scheme AppCheckSnippetsSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
22+
xcodebuild -project AppCheckSnippets.xcodeproj clean build -scheme AppCheckSnippetsSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2123
env:
2224
destination: ${{ matrix.destination }}
2325
objc-build:
@@ -29,9 +31,11 @@ jobs:
2931
steps:
3032
- name: Checkout
3133
uses: actions/checkout@master
34+
- name: Install deps
35+
run: brew install xcbeautify
3236
- name: Build ObjC snippets
3337
run: |
3438
cd appcheck
35-
xcodebuild -project AppCheckSnippets.xcodeproj clean build -scheme AppCheckSnippetsObjC -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
39+
xcodebuild -project AppCheckSnippets.xcodeproj clean build -scheme AppCheckSnippetsObjC -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
3640
env:
3741
destination: ${{ matrix.destination }}

.github/workflows/core.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cp .github/GoogleService-Info-CI.plist firoptions/FiroptionConfiguration/GoogleService-Info.plist
2022
cd firoptions
21-
xcodebuild -project FiroptionConfiguration.xcodeproj clean build -scheme FiroptionConfiguration -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
23+
xcodebuild -project FiroptionConfiguration.xcodeproj clean build -scheme FiroptionConfiguration -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2224
env:
2325
destination: ${{ matrix.destination }}

.github/workflows/crashlytics.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cd crashlytics
20-
xcodebuild -project CrashlyticsExample.xcodeproj clean build -scheme CrashlyticsExampleSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
22+
xcodebuild -project CrashlyticsExample.xcodeproj clean build -scheme CrashlyticsExampleSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2123
env:
2224
destination: ${{ matrix.destination }}
2325
objc-build:
@@ -29,9 +31,11 @@ jobs:
2931
steps:
3032
- name: Checkout
3133
uses: actions/checkout@master
34+
- name: Install deps
35+
run: brew install xcbeautify
3236
- name: Build ObjC snippets
3337
run: |
3438
cd crashlytics
35-
xcodebuild -project CrashlyticsExample.xcodeproj clean build -scheme CrashlyticsExample -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
39+
xcodebuild -project CrashlyticsExample.xcodeproj clean build -scheme CrashlyticsExample -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
3640
env:
3741
destination: ${{ matrix.destination }}

.github/workflows/database.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build snippets
1820
run: |
1921
cd database
20-
xcodebuild -project DatabaseReference.xcodeproj clean build -scheme DatabaseReference -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
22+
xcodebuild -project DatabaseReference.xcodeproj clean build -scheme DatabaseReference -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2123
env:
2224
destination: ${{ matrix.destination }}

.github/workflows/firestore.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cp .github/GoogleService-Info-CI.plist firestore/swift/firestore-smoketest/GoogleService-Info.plist
2022
cd firestore/swift
21-
xcodebuild -project firestore-smoketest.xcodeproj clean build -scheme firestore-smoketest -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
23+
xcodebuild -project firestore-smoketest.xcodeproj clean build -scheme firestore-smoketest -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2224
env:
2325
destination: ${{ matrix.destination }}
2426
objc-build:
@@ -30,10 +32,12 @@ jobs:
3032
steps:
3133
- name: Checkout
3234
uses: actions/checkout@master
35+
- name: Install deps
36+
run: brew install xcbeautify
3337
- name: Build ObjC snippets
3438
run: |
3539
cp .github/GoogleService-Info-CI.plist firestore/objc/GoogleService-Info.plist
3640
cd firestore/objc
37-
xcodebuild -project firestore-smoketest-objc.xcodeproj clean build -scheme firestore-smoketest-objc -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
41+
xcodebuild -project firestore-smoketest-objc.xcodeproj clean build -scheme firestore-smoketest-objc -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
3842
env:
3943
destination: ${{ matrix.destination }}

.github/workflows/functions.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cd functions
20-
xcodebuild -project FunctionsExample.xcodeproj clean build -scheme FunctionsExampleSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
22+
xcodebuild -project FunctionsExample.xcodeproj clean build -scheme FunctionsExampleSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2123
env:
2224
destination: ${{ matrix.destination }}
2325
objc-build:
@@ -29,9 +31,11 @@ jobs:
2931
steps:
3032
- name: Checkout
3133
uses: actions/checkout@master
34+
- name: Install deps
35+
run: brew install xcbeautify
3236
- name: Build ObjC snippets
3337
run: |
3438
cd functions
35-
xcodebuild -project FunctionsExample.xcodeproj clean build -scheme FunctionsExample -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
39+
xcodebuild -project FunctionsExample.xcodeproj clean build -scheme FunctionsExample -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
3640
env:
3741
destination: ${{ matrix.destination }}

.github/workflows/installations.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cd installations/
20-
xcodebuild -project InstallationsSnippets.xcodeproj clean build -scheme InstallationsSnippets -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
22+
xcodebuild -project InstallationsSnippets.xcodeproj clean build -scheme InstallationsSnippets -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2123
env:
2224
destination: ${{ matrix.destination }}

.github/workflows/ml-functions.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cd ml-functions
20-
xcodebuild -project MLFunctionsExample.xcodeproj clean build -scheme MLFunctionsExampleSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
22+
xcodebuild -project MLFunctionsExample.xcodeproj clean build -scheme MLFunctionsExampleSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2123
env:
2224
destination: ${{ matrix.destination }}
2325
objc-build:
@@ -29,9 +31,11 @@ jobs:
2931
steps:
3032
- name: Checkout
3133
uses: actions/checkout@master
34+
- name: Install deps
35+
run: brew install xcbeautify
3236
- name: Build ObjC snippets
3337
run: |
3438
cd ml-functions
35-
xcodebuild -project MLFunctionsExample.xcodeproj clean build -scheme MLFunctionsExample -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
39+
xcodebuild -project MLFunctionsExample.xcodeproj clean build -scheme MLFunctionsExample -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
3640
env:
3741
destination: ${{ matrix.destination }}

.github/workflows/storage.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
sudo xcode-select -switch /Applications/Xcode_16.1.app/Contents/Developer
2022
cd storage
21-
xcodebuild -project StorageReference.xcodeproj clean build -scheme StorageReferenceSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
23+
xcodebuild -project StorageReference.xcodeproj clean build -scheme StorageReferenceSwift -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2224
env:
2325
destination: ${{ matrix.destination }}
2426
objc-build:
@@ -30,10 +32,12 @@ jobs:
3032
steps:
3133
- name: Checkout
3234
uses: actions/checkout@master
35+
- name: Install deps
36+
run: brew install xcbeautify
3337
- name: Build ObjC snippets
3438
run: |
3539
sudo xcode-select -switch /Applications/Xcode_16.1.app/Contents/Developer
3640
cd storage
37-
xcodebuild -project StorageReference.xcodeproj clean build -scheme StorageReference -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
41+
xcodebuild -project StorageReference.xcodeproj clean build -scheme StorageReference -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
3842
env:
3943
destination: ${{ matrix.destination }}

.github/workflows/vertexai.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@master
17+
- name: Install deps
18+
run: brew install xcbeautify
1719
- name: Build Swift snippets
1820
run: |
1921
cd vertexai
20-
xcodebuild -project VertexAISnippets.xcodeproj -scheme VertexAISnippets clean build -destination "${destination}" CODE_SIGNING_REQUIRED=NO
22+
xcodebuild -project VertexAISnippets.xcodeproj -scheme VertexAISnippets clean build -destination "${destination}" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
2123
env:
2224
destination: ${{ matrix.destination }}

0 commit comments

Comments
 (0)