File tree Expand file tree Collapse file tree 3 files changed +17
-20
lines changed Expand file tree Collapse file tree 3 files changed +17
-20
lines changed Original file line number Diff line number Diff line change 10
10
- TARGET=test
11
11
- OS=el DIST=6
12
12
- OS=el DIST=7
13
- - OS=fedora DIST=24
14
- - OS=fedora DIST=25
15
- - OS=ubuntu DIST=precise
13
+ - OS=fedora DIST=28
14
+ - OS=fedora DIST=29
16
15
- OS=ubuntu DIST=trusty
17
16
- OS=ubuntu DIST=xenial
18
- # - OS=debian DIST=wheezy
17
+ - OS=ubuntu DIST=bionic
18
+ - OS=ubuntu DIST=disco
19
19
- OS=debian DIST=jessie
20
20
- OS=debian DIST=stretch
21
-
22
- matrix :
23
- allow_failures :
24
- # - env: OS=el DIST=6
25
- # - env: OS=el DIST=7
26
- # - env: OS=fedora DIST=24
27
- # - env: OS=fedora DIST=25
28
- # - env: OS=ubuntu DIST=precise
29
- # - env: OS=ubuntu DIST=trusty
30
- # - env: OS=ubuntu DIST=xenial
31
- # - env: OS=ubuntu DIST=yakkety
32
- # - env: OS=debian DIST=wheezy
33
- # - env: OS=debian DIST=jessie
34
- # - env: OS=debian DIST=stretch
21
+ - OS=debian DIST=buster
35
22
36
23
script :
37
24
- git describe --long
@@ -100,6 +87,16 @@ deploy:
100
87
on :
101
88
branch : master
102
89
condition : -n "${OS}" && -n "${DIST}" && -n "${PACKAGECLOUD_TOKEN}"
90
+ - provider : packagecloud
91
+ username : tarantool
92
+ repository : " 2_2"
93
+ token : ${PACKAGECLOUD_TOKEN}
94
+ dist : ${OS}/${DIST}
95
+ package_glob : build/*.{rpm,deb}
96
+ skip_cleanup : true
97
+ on :
98
+ branch : master
99
+ condition : -n "${OS}" && -n "${DIST}" && -n "${PACKAGECLOUD_TOKEN}"
103
100
104
101
notifications :
105
102
email :
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def check_connection(con):
42
42
# Make a list of servers
43
43
sources = []
44
44
for server in cluster [1 :]:
45
- sources .append (yaml .load (server .admin ('box.cfg.listen' , silent = True ))[0 ])
45
+ sources .append (yaml .safe_load (server .admin ('box.cfg.listen' , silent = True ))[0 ])
46
46
47
47
addrs = []
48
48
for addr in sources :
Original file line number Diff line number Diff line change @@ -61,4 +61,4 @@ def execute(self, command):
61
61
if (res .rfind ("\n ...\n " ) >= 0 or res .rfind ("\r \n ...\r \n " ) >= 0 ):
62
62
break
63
63
64
- return yaml .load (res , yaml . FullLoader )
64
+ return yaml .safe_load (res )
You can’t perform that action at this time.
0 commit comments