File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ jobs:
29
29
tarantool :
30
30
- ' 1.10'
31
31
- ' 2.8'
32
- - ' 2.9 '
32
+ - ' 2.10 '
33
33
- ' 2.x-latest'
34
34
coveralls : [false]
35
35
36
36
steps :
37
37
- name : Clone the connector
38
38
uses : actions/checkout@v2
39
39
40
- - name : Setup Tarantool ${{ matrix.tarantool }}
41
- if : matrix.tarantool != '2.x-latest'
40
+ - name : Setup Tarantool ${{ matrix.tarantool }} (< 2.10)
41
+ if : matrix.tarantool != '2.x-latest' && matrix.tarantool != '2.10'
42
42
uses : tarantool/setup-tarantool@v1
43
43
with :
44
44
tarantool-version : ${{ matrix.tarantool }}
49
49
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
50
50
sudo apt install -y tarantool tarantool-dev
51
51
52
+ - name : Setup Tarantool 2.10
53
+ if : matrix.tarantool == '2.10'
54
+ run : |
55
+ curl -L https://tarantool.io/tWsLBdI/release/2/installer.sh | bash
56
+ sudo apt install -y tarantool tarantool-dev
57
+
52
58
- name : Setup golang for the connector and tests
53
59
uses : actions/setup-go@v2
54
60
with :
You can’t perform that action at this time.
0 commit comments