Skip to content
Snippets Groups Projects
Commit 2dc3bd8a authored by Petter Reinholdtsen's avatar Petter Reinholdtsen
Browse files

Print config.log from CI if configure fail.

parent 996200e5
No related branches found
No related tags found
No related merge requests found
Pipeline #6236 passed
......@@ -24,7 +24,7 @@ autotools-gcc:
extends: .autoconf
script:
- ./autogen.sh
- ./configure ${CONFIG_FLAGS}
- ./configure ${CONFIG_FLAGS} || cat config.log
- make
- make distcheck
artifacts:
......@@ -37,7 +37,7 @@ autotools-gcc-builddir:
script:
- ./autogen.sh
- mkdir build
- (cd build && ../configure ${CONFIG_FLAGS})
- (cd build && ../configure ${CONFIG_FLAGS}) || cat config.log
- (cd build && make)
- (cd build && make check)
......@@ -45,7 +45,7 @@ autotools-clang:
extends: .autoconf
script:
- ./autogen.sh
- ./configure ${CONFIG_FLAGS}
- ./configure ${CONFIG_FLAGS} || cat config.log
- make
- make distcheck
variables:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment