Skip to content

Commit

Permalink
ci: cat config.log if configure run fails
Browse files Browse the repository at this point in the history
  • Loading branch information
ndim committed Sep 18, 2024
1 parent ea6c032 commit 7fd07d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
run: autoreconf -v -i -f

- name: 'configure'
run: ./configure ${COMMON_CONFIGURE_FLAGS} --prefix=$PWD/__prefix
run: if ./configure ${COMMON_CONFIGURE_FLAGS} --prefix=$PWD/__prefix; then :; else cat config.log; exit 1; fi

- name: 'make'
run: set -x; ${ci_MAKE} CPPFLAGS="${OS_SPECIFIC_CPPFLAGS}"
Expand Down

0 comments on commit 7fd07d4

Please sign in to comment.