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 9df9623 commit 633247aCopy full SHA for 633247a
spec/install_oracle.sh
@@ -4,7 +4,12 @@ wget 'https://github.com/cbandy/travis-oracle/archive/v2.0.3.tar.gz'
4
mkdir -p ~/.travis/oracle
5
tar xz --strip-components 1 -C ~/.travis/oracle -f v2.0.3.tar.gz
6
7
-~/.travis/oracle/download.sh
+if [ -n $CUSTOM_ORACLE_FILE ]; then
8
+ wget -q $CUSTOM_ORACLE_FILE -O ~/.travis/oracle/oracle-xe-11.2.0-1.0.x86_64.rpm.zip
9
+else
10
+ ~/.travis/oracle/download.sh
11
+fi
12
+
13
~/.travis/oracle/install.sh
14
15
"$ORACLE_HOME/bin/sqlplus" -L -S / AS SYSDBA <<SQL
0 commit comments