Skip to content

Commit

Permalink
.github/workflows: ci-core: print logs directly
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 committed Nov 21, 2024
1 parent cb20337 commit e0cd3c2
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,17 +240,10 @@ jobs:
id: run-tests
env:
OUTPUT_FILE: ./output.txt
USE_TEE: false
USE_TEE: ${{ matrix.type.printResults }}
CL_DATABASE_URL: ${{ env.DB_URL }}
run: ./tools/bin/${{ matrix.type.cmd }} ./...

- name: Print Filtered Test Results
if: ${{ failure() && needs.filter.outputs.should-run-ci-core == 'true' && steps.run-tests.conclusion == 'failure' }}
run: |
if [[ "${{ matrix.type.printResults }}" == "true" ]]; then
cat output.txt | gotestloghelper -ci
fi
- name: Print Races
id: print-races
if: ${{ failure() && matrix.type.cmd == 'go_core_race_tests' && needs.filter.outputs.should-run-ci-core == 'true' }}
Expand Down

0 comments on commit e0cd3c2

Please sign in to comment.