File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 5
5
- shell : bash
6
6
run : |
7
7
set -x
8
+
8
9
sudo apt-get update
9
10
sudo apt-get install \
10
11
bison \
@@ -58,12 +59,15 @@ runs:
58
59
libjpeg-dev \
59
60
libpng-dev \
60
61
libfreetype6-dev
62
+
61
63
mkdir /opt/oracle
62
64
wget -nv https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip
63
65
unzip instantclient-basiclite-linuxx64.zip && rm instantclient-basiclite-linuxx64.zip
64
66
wget -nv https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip
65
67
unzip instantclient-sdk-linuxx64.zip && rm instantclient-sdk-linuxx64.zip
66
68
mv instantclient_*_* /opt/oracle/instantclient
67
- # Interferes with libldap2 headers.
69
+ # interferes with libldap2 headers
68
70
rm /opt/oracle/instantclient/sdk/include/ldap.h
71
+ # fix debug build warning: zend_signal: handler was replaced for signal (2) after startup
72
+ echo DISABLE_INTERRUPT=on > /opt/oracle/instantclient/network/admin/sqlnet.ora
69
73
sudo sh -c 'echo /opt/oracle/instantclient >/etc/ld.so.conf.d/oracle-instantclient.conf && ldconfig'
You can’t perform that action at this time.
0 commit comments