@@ -34,14 +34,14 @@ jobs:
34
34
- ' 1.10'
35
35
- ' 2.8'
36
36
- ' 2.10'
37
- - ' 2.x-latest '
37
+ - ' master '
38
38
coveralls : [false]
39
39
fuzzing : [false]
40
40
include :
41
- - tarantool : ' 2.x-latest '
41
+ - tarantool : ' master '
42
42
coveralls : true
43
43
golang : 1.13
44
- - tarantool : ' 2.x-latest '
44
+ - tarantool : ' master '
45
45
fuzzing : true
46
46
golang : 1.18
47
47
coveralls : false
@@ -56,34 +56,34 @@ jobs:
56
56
sudo apt install -y tt
57
57
58
58
- name : Setup Tarantool ${{ matrix.tarantool }}
59
- if : matrix.tarantool != '2.x-latest '
59
+ if : matrix.tarantool != 'master '
60
60
uses : tarantool/setup-tarantool@v2
61
61
with :
62
62
tarantool-version : ${{ matrix.tarantool }}
63
63
64
- - name : Get Tarantool 2.x latest commit
65
- if : matrix.tarantool == '2.x-latest '
64
+ - name : Get Tarantool master commit
65
+ if : matrix.tarantool == 'master '
66
66
run : |
67
67
commit_hash=$(git ls-remote https://github.com/tarantool/tarantool.git --branch master | head -c 8)
68
68
echo "LATEST_COMMIT=${commit_hash}" >> $GITHUB_ENV
69
69
shell : bash
70
70
71
- - name : Cache Tarantool 2.x latest
72
- if : matrix.tarantool == '2.x-latest '
71
+ - name : Cache Tarantool master
72
+ if : matrix.tarantool == 'master '
73
73
id : cache-latest
74
74
uses : actions/cache@v3
75
75
with :
76
76
path : " ${GITHUB_WORKSPACE}/bin"
77
77
key : cache-latest-${{ env.LATEST_COMMIT }}
78
78
79
- - name : Setup Tarantool 2.x latest
80
- if : matrix.tarantool == '2.x-latest ' && steps.cache-latest.outputs.cache-hit != 'true'
79
+ - name : Setup Tarantool master
80
+ if : matrix.tarantool == 'master ' && steps.cache-latest.outputs.cache-hit != 'true'
81
81
run : |
82
82
tt init
83
83
sudo tt install tarantool master
84
84
85
- - name : Add Tarantool 2.x latest to PATH
86
- if : matrix.tarantool == '2.x-latest '
85
+ - name : Add Tarantool master to PATH
86
+ if : matrix.tarantool == 'master '
87
87
run : echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH
88
88
89
89
- name : Setup golang for the connector and tests
0 commit comments