Skip to content
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

Replace xcpretty with xcbeautify to fix CI failure #906

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ runs:

steps:
- name: Set up Ruby
uses: ruby/setup-ruby@52753b7da854d5c07df37391a986c76ab4615999 # pinned to version v1.191.0
uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 # pin@v1.221.0
with:
ruby-version: '3.1.0'
ruby-version: '3.3.0'
bundler-cache: true
cache-version: 1

- name: Setup Xcode
uses: mxcl/xcodebuild@6e60022a0cbe8c89278be2dd1773a2f68e7c5c87
uses: mxcl/xcodebuild@2cf0ec52b855fa777531c5c89b714caa7a3abd5e # [email protected]
with:
xcode: ${{ inputs.xcode }}
action: none
action: none
verbosity: xcbeautify
7 changes: 2 additions & 5 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ runs:
using: composite

steps:
- name: Install xcpretty
run: gem install xcpretty
shell: bash

- name: Save Xcode version
run: xcodebuild -version | tee .xcode-version
shell: bash
Expand All @@ -37,9 +33,10 @@ runs:
shell: bash

- name: Run tests
uses: mxcl/xcodebuild@6e60022a0cbe8c89278be2dd1773a2f68e7c5c87
uses: mxcl/xcodebuild@2cf0ec52b855fa777531c5c89b714caa7a3abd5e # [email protected]
with:
xcode: ${{ inputs.xcode }}
scheme: ${{ inputs.scheme }}
platform: ${{ inputs.platform }}
code-coverage: true
verbosity: xcbeautify
Loading