File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -197,12 +197,20 @@ jobs:
197
197
with :
198
198
distribution : Ubuntu-20.04
199
199
200
- - name : Install tarantool ${{ matrix.tarantool }} for WSL
200
+ - name : Install tarantool ${{ matrix.tarantool }} for WSL (2.8 and older)
201
+ if : (matrix.tarantool == '1.10') || (matrix.tarantool == '2.8')
201
202
shell : wsl-bash_Ubuntu-20.04 {0}
202
203
run : |
203
204
curl -L https://tarantool.io/installer.sh | VER=${{ matrix.tarantool }} bash -s -- --type "release"
204
205
sudo apt install -y tarantool tarantool-dev
205
206
207
+ - name : Install tarantool ${{ matrix.tarantool }} for WSL (2.10 and newer)
208
+ if : (matrix.tarantool != '1.10') && (matrix.tarantool != '2.8')
209
+ shell : wsl-bash_Ubuntu-20.04 {0}
210
+ run : |
211
+ curl -L https://tarantool.io/release/2/installer.sh | sudo bash | VER=2 bash -s -- --type "release"
212
+ sudo apt install -y tarantool=${{ matrix.tarantool }} tarantool-dev=${{ matrix.tarantool }}
213
+
206
214
- name : Setup test tarantool instance
207
215
shell : wsl-bash_Ubuntu-20.04 {0}
208
216
run : |
You can’t perform that action at this time.
0 commit comments