sort the docker logs by timestamp; docker-compose writes log entries FIFO which may not be chronological
This commit is contained in:
parent
d18ce867be
commit
084ffa41aa
|
@ -88,4 +88,6 @@ jobs:
|
|||
COV_CMD: ""
|
||||
- name: Test Results - ${{ matrix.name }}
|
||||
if: ${{ always() }}
|
||||
run: docker logs base
|
||||
run: |
|
||||
docker logs base -t &>docker.log
|
||||
sort -b -k 1 docker.log
|
||||
|
|
Loading…
Reference in New Issue