From 6791fba8be7a8dfda7ec79b68a196ca1c4b554b1 Mon Sep 17 00:00:00 2001 From: Luigi311 Date: Tue, 9 Feb 2021 22:58:10 -0700 Subject: [PATCH] Always cat log Signed-off-by: Luigi311 --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index af73ec9..9e21d56 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -86,9 +86,12 @@ jobs: tar xf video.tar.gz - name: Testing ${{ matrix.name }} run: | - ./av1an.py -i bus_cif.y4m -enc ${{ matrix.enc }} -tr 20 --keep -o "bus_cif.mkv" ${{ matrix.flags }} + ./av1an.py -i bus_cif.y4m -enc ${{ matrix.enc }} -log log_av1an -tr 20 --keep -o "bus_cif.mkv" ${{ matrix.flags }} du -h bus_cif.mkv tree -a + - name: Cat log + if: always() + run: cat log_av1an.log docker: runs-on: ubuntu-18.04