Skip to content

Commit 055b205

Browse files
committed
Try to get actual develop-branch for test-matrix
1 parent d7af0fc commit 055b205

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ env:
2727
- UTPLSQL_VERSION="v3.0.2"
2828
- UTPLSQL_VERSION="v3.0.3"
2929
- UTPLSQL_VERSION="v3.0.4"
30-
- UTPLSQL_VERSION="v3.1.0"
30+
- UTPLSQL_VERSION="develop"
31+
UTPLSQL_FILE="utPLSQL-develop"
3132

3233
cache:
3334
directories:

.travis/install_utplsql.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ set -ev
33
cd $(dirname $(readlink -f $0))
44

55
# Download the specified version of utPLSQL.
6-
curl -L -O "https://github.com/utPLSQL/utPLSQL/releases/download/$UTPLSQL_VERSION/$UTPLSQL_FILE.tar.gz"
6+
if [ $UTPLSQL_VERSION == "develop" ]
7+
then
8+
git clone -b develop --single-branch https://github.com/utPLSQL/utPLSQL.git
9+
tar -czf $UTPLSQL_FILE.tar.gz $UTPLSQL_FILE && rm -rf $UTPLSQL_FILE
10+
else
11+
curl -L -O "https://github.com/utPLSQL/utPLSQL/releases/download/$UTPLSQL_VERSION/$UTPLSQL_FILE.tar.gz"
12+
fi
713

814
# Download develop branch of utPLSQL.
915
#UTPLSQL_VERSION="develop"

0 commit comments

Comments
 (0)