File tree 1 file changed +4
-6
lines changed 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -73,20 +73,18 @@ jobs:
73
73
id : cache-latest
74
74
uses : actions/cache@v3
75
75
with :
76
- path : " /opt/tarantool "
76
+ path : " ${GITHUB_WORKSPACE}/bin "
77
77
key : cache-latest-${{ env.LATEST_COMMIT }}
78
78
79
79
- name : Setup Tarantool 2.x latest
80
80
if : matrix.tarantool == '2.x-latest' && steps.cache-latest.outputs.cache-hit != 'true'
81
81
run : |
82
- # mkdir could be removed after:
83
- # https://github.com/tarantool/tt/issues/282
84
- sudo mkdir -p /opt/tarantool
85
- sudo tt install tarantool=master
82
+ tt init
83
+ sudo tt install tarantool master
86
84
87
85
- name : Add Tarantool 2.x latest to PATH
88
86
if : matrix.tarantool == '2.x-latest'
89
- run : echo "/opt/tarantool /bin" >> $GITHUB_PATH
87
+ run : echo "${GITHUB_WORKSPACE} /bin" >> $GITHUB_PATH
90
88
91
89
- name : Setup golang for the connector and tests
92
90
uses : actions/setup-go@v3
You can’t perform that action at this time.
0 commit comments