tests: show linkage and bottle output earlier (#94825)

These don't need the outcome of the dependent tests, so let's show them
earlier. It'll also make the formulae step easier to distinguish from
the dependents step in the CI log.
master
Carlo Cabrera 2022-02-10 16:32:20 +08:00 committed by GitHub
parent 893b586bf7
commit dc934e95c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -231,6 +231,18 @@ jobs:
cat bottles/steps_output.txt
rm bottles/steps_output.txt
- name: Output brew linkage result
if: always()
run: |
cat bottles/linkage_output.txt
rm bottles/linkage_output.txt
- name: Output brew bottle result
if: always()
run: |
cat bottles/bottle_output.txt
rm bottles/bottle_output.txt
- name: Run brew test-bot ${{ needs.setup_tests.outputs.test-bot-dependents-args }} --skipped-or-failed-formulae=${{ steps.brew-test-bot-formulae.outputs.skipped_or_failed_formulae }}
if: ${{fromJson(needs.setup_tests.outputs.test-dependents)}}
run: |
@ -244,18 +256,6 @@ jobs:
cat bottles/steps_output.txt
rm bottles/steps_output.txt
- name: Output brew linkage result
if: always()
run: |
cat bottles/linkage_output.txt
rm bottles/linkage_output.txt
- name: Output brew bottle result
if: always()
run: |
cat bottles/bottle_output.txt
rm bottles/bottle_output.txt
- name: Upload logs
if: always()
uses: actions/upload-artifact@main