We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f1964 commit 4c94cfaCopy full SHA for 4c94cfa
1 file changed
.github/workflows/dtkdeclarative-archlinux-build.yml
@@ -78,9 +78,16 @@ jobs:
78
echo "=== Built files ==="
79
find build -name "*.so" -o -name "*.a" | head -20
80
81
+ - name: Print build logs on failure
82
+ if: failure()
83
+ run: |
84
+ echo "=== cmake-configure.log ==="
85
+ cat /tmp/cmake-configure.log 2>/dev/null || echo "(not found)"
86
+ echo "=== cmake-build.log (last 100 lines) ==="
87
+ tail -100 /tmp/cmake-build.log 2>/dev/null || echo "(not found)"
88
+
89
- name: Install dtkdeclarative to staging directory
90
run: |
- cat build/cmake_install.cmake 2>/dev/null | head -30 || true
91
DESTDIR=/tmp/dtkdeclarative-install cmake --install build --verbose
92
echo "Total: $(find /tmp/dtkdeclarative-install -type f | wc -l) files"
93
find /tmp/dtkdeclarative-install -type f | head -20
0 commit comments