summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2022-10-27 12:26:21 -0500
committerDudemanguy <random342@airmail.cc>2022-10-27 18:42:12 +0000
commit0f1ae8896e8fbdd9f928f972f6ba04641f20536e (patch)
tree46c7d8914afdb1a7800a52a4f0a0f6841d80b8e1
parentc3c19783307b6d51662a3ae5fb5f18a5d5402594 (diff)
downloadmpv-0f1ae8896e8fbdd9f928f972f6ba04641f20536e.tar.bz2
mpv-0f1ae8896e8fbdd9f928f972f6ba04641f20536e.tar.xz
github/workflows: print error logs on freebsd
Despite being run in a VM, the workflow actually copies the files back to the host. We can then explictly print the error logs on failure in their own separate section for visibility instead of it being hidden within all the vm output.
-rw-r--r--.github/workflows/build.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a589985d3d..9e877748aa 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -196,3 +196,13 @@ jobs:
#
run: |
./ci/build-freebsd.sh
+
+ - name: Print meson log
+ if: ${{ failure() }}
+ run: |
+ cat ./build/meson-logs/meson-log.txt
+
+ - name: Print waf log
+ if: ${{ failure() }}
+ run: |
+ cat ./build/config.log