diff --git a/.github/actions/prepare-ios-tests/action.yml b/.github/actions/prepare-ios-tests/action.yml index daa43b3b64e..6465f0db99b 100644 --- a/.github/actions/prepare-ios-tests/action.yml +++ b/.github/actions/prepare-ios-tests/action.yml @@ -3,9 +3,6 @@ description: Prepare iOS Tests runs: using: composite steps: - - name: brew install xcbeautify - run: brew install xcbeautify - shell: bash - name: Run Ruby Tests shell: bash run: | diff --git a/.github/actions/test-ios-rntester/action.yml b/.github/actions/test-ios-rntester/action.yml index 61c28f6b8b1..25acfe2cd60 100644 --- a/.github/actions/test-ios-rntester/action.yml +++ b/.github/actions/test-ios-rntester/action.yml @@ -121,21 +121,21 @@ runs: if: ${{ inputs.run-unit-tests != 'true' && inputs.run-e2e-tests == 'false' }} shell: bash run: | - set -o pipefail && xcodebuild build \ + xcodebuild build \ -workspace packages/rn-tester/RNTesterPods.xcworkspace \ -scheme RNTester \ - -sdk iphonesimulator | xcbeautify + -sdk iphonesimulator - name: Build RNTester (E2E Tests) shell: bash if: ${{ inputs.run-e2e-tests == 'true' }} run: | - set -o pipefail && xcodebuild \ + xcodebuild \ -scheme "RNTester" \ -workspace packages/rn-tester/RNTesterPods.xcworkspace \ -configuration "${{ inputs.flavor }}" \ -sdk "iphonesimulator" \ -destination "generic/platform=iOS Simulator" \ - -derivedDataPath "/tmp/RNTesterBuild" | xcbeautify + -derivedDataPath "/tmp/RNTesterBuild" echo "Print path to *.app file" find "/tmp/RNTesterBuild" -type d -name "*.app"