Skip to content

Commit ea10e79

Browse files
committed
Merge branch 'PHP-8.2'
* PHP-8.2: Fix missing instantclient in CI
2 parents 5ea14a2 + ca4d7bf commit ea10e79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/configure-x64/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ runs:
7777
${{ inputs.skipSlow == 'false' && '--with-imap' || '' }} \
7878
${{ inputs.skipSlow == 'false' && '--with-imap-ssl' || '' }} \
7979
${{ inputs.skipSlow == 'false' && '--with-pdo-odbc=unixODBC,/usr' || '' }} \
80-
${{ inputs.skipSlow == 'false' && '--with-pdo-oci=shared,instantclient,/opt/oracle/instantclient' || '' }} \
81-
${{ inputs.skipSlow == 'false' && '--with-oci8=shared,instantclient,/opt/oracle/instantclient' || '' }} \
80+
$([ -d "/opt/oracle/instantclient" ] && echo '--with-pdo-oci=shared,instantclient,/opt/oracle/instantclient') \
81+
$([ -d "/opt/oracle/instantclient" ] && echo '--with-oci8=shared,instantclient,/opt/oracle/instantclient') \
8282
--with-config-file-path=/etc \
8383
--with-config-file-scan-dir=/etc/php.d \
8484
${{ inputs.skipSlow == 'false' && '--with-pdo-firebird' || '' }} \

0 commit comments

Comments
 (0)