Skip to content

Commit c911fd8

Browse files
committed
wip Oracle ldconfig
lib wip wip2 not needed
1 parent 37f01e1 commit c911fd8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,8 @@ runs:
126126
rm /opt/oracle/instantclient/sdk/include/ldap.h
127127
# fix debug build warning: zend_signal: handler was replaced for signal (2) after startup
128128
echo DISABLE_INTERRUPT=on > /opt/oracle/instantclient/network/admin/sqlnet.ora
129-
sh -c 'echo /opt/oracle/instantclient >/etc/ld.so.conf.d/oracle-instantclient.conf && ldconfig'
129+
if [ -f /etc/alpine-release ]; then
130+
echo "/lib:/usr/local/lib:/usr/lib:/opt/oracle/instantclient" > /etc/ld-musl-x86_64.path
131+
else
132+
sh -c 'echo /opt/oracle/instantclient >/etc/ld.so.conf.d/oracle-instantclient.conf && ldconfig'
133+
fi

0 commit comments

Comments
 (0)