updated .drone.yml to show error logs upon build failure
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
hyung-hwan 2024-01-03 22:47:42 +09:00
parent dab0c01e73
commit 15a8f142f1

View File

@ -8,7 +8,7 @@ steps:
commands: commands:
- mkdir bld-gcc13 && cd bld-gcc13 - mkdir bld-gcc13 && cd bld-gcc13
- ../configure - ../configure
- make && make check - make && { make check || { cat t/test-suite.log; exit 1; } }
depends_on: depends_on:
- clone - clone
@ -17,6 +17,6 @@ steps:
commands: commands:
- mkdir bld-clang15 && cd bld-clang15 - mkdir bld-clang15 && cd bld-clang15
- ../configure CC=clang - ../configure CC=clang
- make && make check - make && { make check || { cat t/test-suite.log; exit 1; } }
depends_on: depends_on:
- clone - clone