sort the docker logs by timestamp; docker-compose writes log entries FIFO which may not be chronological

This commit is contained in:
sommersoft 2022-04-23 08:27:24 -05:00
parent d18ce867be
commit 084ffa41aa
1 changed files with 3 additions and 1 deletions

View File

@ -88,4 +88,6 @@ jobs:
COV_CMD: "" COV_CMD: ""
- name: Test Results - ${{ matrix.name }} - name: Test Results - ${{ matrix.name }}
if: ${{ always() }} if: ${{ always() }}
run: docker logs base run: |
docker logs base -t &>docker.log
sort -b -k 1 docker.log