Skip to content

Commit

Permalink
Drop xcpretty since it has hid some thing when things fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvl committed Sep 26, 2024
1 parent 20e7631 commit c22a3f7
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@ jobs:
- uses: actions/checkout@v4
- name: Build and Test
run: |
# Have to skip some tests that aren't working on newer OSes.
set -o pipefail
xcodebuild \
-project GTM.xcodeproj \
-scheme GTM \
-configuration ${{ matrix.MODE }} \
build test \
| xcpretty
build test
iOS:
runs-on: macos-14
strategy:
Expand All @@ -40,14 +37,12 @@ jobs:
- uses: actions/checkout@v4
- name: Build and Test
run: |
set -o pipefail
xcodebuild \
-project GTMiPhone.xcodeproj \
-scheme GTMiPhone \
-configuration ${{ matrix.MODE }} \
-destination "platform=iOS Simulator,name=iPhone 14,OS=latest" \
build test \
| xcpretty
build test
bazel:
runs-on: macos-14
strategy:
Expand Down

0 comments on commit c22a3f7

Please sign in to comment.