updated .drone.yml to show error logs upon build failure
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
dab0c01e73
commit
15a8f142f1
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user