We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e2e832 commit 52a412fCopy full SHA for 52a412f
.github/actions/configure-gentoo/action.yml
@@ -11,6 +11,12 @@ runs:
11
steps:
12
- shell: bash
13
run: |
14
+ func oops() {
15
+ echo "::group::Show config.log"
16
+ cat config.log
17
+ echo "::endgroup::"
18
+ }
19
+ trap oops ERR
20
set -x
21
./buildconf --force
22
./configure \
@@ -76,9 +82,4 @@ runs:
76
82
--with-config-file-scan-dir=/etc/php.d \
77
83
${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \
78
84
--enable-werror \
79
- ${{ inputs.configurationParameters }} \
80
- || (echo
81
- echo "::group::Show config.log"
- cat config.log
- echo "::endgroup::"
- exit 1)
85
+ ${{ inputs.configurationParameters }}
0 commit comments