File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ sudo: required
2
2
services :
3
3
- docker
4
4
5
+ language : cpp
6
+ compiler :
7
+ - gcc
8
+
5
9
env :
6
10
matrix :
7
11
- OS=el DIST=6 PACK=rpm
Original file line number Diff line number Diff line change
1
+ sudo apt-get update
2
+ uname -a
3
+ lsb_release -c -s
4
+
5
+ curl http://tarantool.org/dist/public.key | sudo apt-key add -
6
+ echo " deb http://tarantool.org/dist/master/ubuntu/ ` lsb_release -c -s` main" | sudo tee -a /etc/apt/sources.list.d/tarantool.list
7
+ sudo apt-get update > /dev/null
8
+ sudo apt-get -q install tarantool tarantool-dev
9
+ sudo apt-get -q install libmysqlclient-dev
10
+
11
+ mysql -e " CREATE USER 'tarantool'@'localhost' IDENTIFIED BY 'tarantool';" -u root
12
+ mysql -e " CREATE DATABASE tarantool;" -u root
13
+ mysql -e " GRANT ALL PRIVILEGES ON *.* TO 'tarantool'@'localhost' WITH GRANT OPTION;" -u root
14
+ export MYSQL=' 127.0.0.1:3306:tarantool:tarantool:tarantool'
15
+
16
+ cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo
17
+ make
18
+ make test
You can’t perform that action at this time.
0 commit comments