-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,27 +100,27 @@ jobs: | |
| tee xcodebuild.log | xcpretty _0.3.0_ -r junit && exit ${PIPESTATUS[0]} | ||
working-directory: ${{ env.browser }} | ||
continue-on-error: true | ||
# - name: Print test report | ||
# id: test-report | ||
# run: | | ||
# python ../test-fixtures/ci/convert_junit_to_markdown.py ${{ matrix.xcodebuild_test_plan == 'SmokeTest' && '--smoke' || '' }} --github --${{ env.browser }} ./build/reports/junit.xml ./github.md | ||
# cat github.md >> $GITHUB_STEP_SUMMARY | ||
# python ../test-fixtures/ci/convert_junit_to_markdown.py ${{ matrix.xcodebuild_test_plan == 'SmokeTest' && '--smoke' || '' }} --slack --${{ env.browser }} ./build/reports/junit.xml ./slack.json | ||
# working-directory: ${{ env.browser }} | ||
# - name: Upload log file | ||
# id: upload-log | ||
# uses: actions/[email protected] | ||
# with: | ||
# name: ${{ env.browser }}-${{ matrix.xcodebuild_test_plan }}-${{ matrix.ios_simulator }}-xcodebuildlog-${{ github.run_number }} | ||
# path: ${{ env.browser }}/xcodebuild.log | ||
# retention-days: 90 | ||
# - name: Upload junit files | ||
# id: upload-junit | ||
# uses: actions/[email protected] | ||
# with: | ||
# name: ${{ env.browser }}-${{ matrix.xcodebuild_test_plan }}-${{ matrix.ios_simulator }}-junit-${{ github.run_number }} | ||
# path: ${{ env.browser }}/build/reports/junit.xml | ||
# retention-days: 90 | ||
- name: Print test report | ||
id: test-report | ||
run: | | ||
python ../test-fixtures/ci/convert_junit_to_markdown.py ${{ matrix.xcodebuild_test_plan == 'SmokeTest' && '--smoke' || '' }} --github --${{ env.browser }} ./build/reports/junit.xml ./github.md | ||
cat github.md >> $GITHUB_STEP_SUMMARY | ||
python ../test-fixtures/ci/convert_junit_to_markdown.py ${{ matrix.xcodebuild_test_plan == 'SmokeTest' && '--smoke' || '' }} --slack --${{ env.browser }} ./build/reports/junit.xml ./slack.json | ||
working-directory: ${{ env.browser }} | ||
- name: Upload log file | ||
id: upload-log | ||
uses: actions/[email protected] | ||
with: | ||
name: ${{ env.browser }}-${{ matrix.xcodebuild_test_plan }}-${{ matrix.ios_simulator }}-xcodebuildlog-${{ github.run_number }} | ||
path: ${{ env.browser }}/xcodebuild.log | ||
retention-days: 90 | ||
- name: Upload junit files | ||
id: upload-junit | ||
uses: actions/[email protected] | ||
with: | ||
name: ${{ env.browser }}-${{ matrix.xcodebuild_test_plan }}-${{ matrix.ios_simulator }}-junit-${{ github.run_number }} | ||
path: ${{ env.browser }}/build/reports/junit.xml | ||
retention-days: 90 | ||
# - name: Report to Slack | ||
# id: slack | ||
# uses: slackapi/[email protected] | ||
|