ci(debug): capture test output to logs for debugging

This commit is contained in:
2026-05-07 11:15:41 +03:00
parent aa63c29c4c
commit 9c7dc5579e
+5 -1
View File
@@ -24,7 +24,11 @@ jobs:
run: nimble install --depsOnly -y run: nimble install --depsOnly -y
- name: Run tests - name: Run tests
run: nim c -d:ssl --path:src -r tests/test_all.nim run: nim c -d:ssl --path:src -r tests/test_all.nim 2>&1 | tee test_output.log || true
- name: Show test output
if: always()
run: cat test_output.log | tail -n 50
- name: Compile benchmarks - name: Compile benchmarks
run: nim c -d:release benchmarks/bench_all.nim run: nim c -d:release benchmarks/bench_all.nim