Skip to content

Commit db21a6a

Browse files
Totktonadanicktorwald
authored andcommitted
DO NOT MERGE: Setup CI for prepared statements
1 parent b28e657 commit db21a6a

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
- TNT_VERSION=2x
1515
- TNT_VERSION=2.2
1616
- TNT_VERSION=2.3
17+
- TNT_VERSION=np/gh-2592-prepared-statemets-v2
1718

1819
stages:
1920
- checkstyle

.travis/travis.pre.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
set -exuo pipefail # Strict shell
44

5+
if [ "${TNT_VERSION}" = "np/gh-2592-prepared-statemets-v2" ]; then
6+
sudo apt-get update
7+
8+
# branch: np/gh-2592-prepared-statemets-v2
9+
# commit: ae06bd6e176c20b065f2a503461f7e907b32a96f
10+
wget https://tkn.me/tmp/tarantool_2.3.0.266.gae06bd6-1_amd64.deb
11+
wget https://tkn.me/tmp/tarantool-common_2.3.0.266.gae06bd6-1_all.deb
12+
13+
# Install dependencies and tarantool packages.
14+
sudo apt-get -y install binutils libgomp1 libicu52 libunwind8
15+
sudo dpkg -i tarantool*.deb
16+
sudo apt-get -y install -f # just in case
17+
18+
sudo tarantoolctl stop example
19+
20+
exit
21+
fi
22+
523
curl http://download.tarantool.org/tarantool/${TNT_VERSION}/gpgkey | sudo apt-key add -
624
RELEASE=`lsb_release -c -s`
725

0 commit comments

Comments
 (0)