Skip to content

Commit f155da6

Browse files
workaround failing ci
1 parent 154b131 commit f155da6

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

.github/workflows/packing.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797

9898
- name: Install the crud module for testing purposes
9999
run: |
100-
curl -L https://tarantool.io/release/2/installer.sh | bash
100+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
101+
bash installer.sh
101102
sudo apt install -y tt
102103
tt rocks install crud
103104
@@ -153,7 +154,8 @@ jobs:
153154
- name: Install tarantool
154155
shell: wsl-bash_Ubuntu-20.04 {0}
155156
run: |
156-
curl -L https://tarantool.io/release/2/installer.sh | bash -s
157+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
158+
bash installer.sh
157159
sudo apt install -y tarantool tarantool-dev
158160
159161
- name: Setup test tarantool instance
@@ -337,7 +339,8 @@ jobs:
337339

338340
- name: Install the crud module for testing purposes
339341
run: |
340-
curl -L https://tarantool.io/release/2/installer.sh | bash
342+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
343+
bash installer.sh
341344
sudo dnf install -y tt
342345
tt rocks install crud
343346
@@ -504,7 +507,8 @@ jobs:
504507

505508
- name: Install the crud module for testing purposes
506509
run: |
507-
curl -L https://tarantool.io/release/2/installer.sh | bash
510+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
511+
bash installer.sh
508512
apt install -y tt
509513
tt rocks install crud
510514

.github/workflows/reusable_testing.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141

4242
- name: Install the crud module for testing purposes
4343
run: |
44-
curl -L https://tarantool.io/release/2/installer.sh | bash
44+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
45+
bash installer.sh
4546
sudo apt install -y tt
4647
tt rocks install crud
4748

.github/workflows/testing.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ jobs:
8787

8888
- name: Install the crud module for testing purposes
8989
run: |
90-
curl -L https://tarantool.io/release/2/installer.sh | bash
90+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
91+
bash installer.sh
9192
sudo apt install -y tt
9293
tt rocks install crud
9394
@@ -154,7 +155,8 @@ jobs:
154155
# See more here: https://github.com/tarantool/tt/issues/282
155156
run: |
156157
source tarantool-enterprise/env.sh
157-
curl -L https://tarantool.io/release/2/installer.sh | bash
158+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
159+
bash installer.sh
158160
sudo apt install -y tt
159161
tt rocks install crud TARANTOOL_DIR=$PWD/tarantool-enterprise
160162
@@ -213,7 +215,8 @@ jobs:
213215

214216
- name: Install the crud module for testing purposes
215217
run: |
216-
curl -L https://tarantool.io/release/2/installer.sh | bash
218+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
219+
bash installer.sh
217220
sudo apt install -y tt
218221
tt rocks install crud
219222
@@ -275,7 +278,8 @@ jobs:
275278
if: (matrix.tarantool != '1.10') && (matrix.tarantool != '2.8')
276279
shell: wsl-bash_Ubuntu-20.04 {0}
277280
run: |
278-
curl -L https://tarantool.io/release/2/installer.sh | bash -s
281+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
282+
bash installer.sh
279283
sudo apt install -y tarantool=${{ matrix.tarantool }} tarantool-dev=${{ matrix.tarantool }}
280284
281285
- name: Setup test tarantool instance
@@ -347,7 +351,8 @@ jobs:
347351
- name: Install tarantool ${{ matrix.tarantool }} for WSL
348352
shell: wsl-bash_Ubuntu-20.04 {0}
349353
run: |
350-
curl -L https://tarantool.io/release/2/installer.sh | bash -s
354+
curl -L https://tarantool.io/release/2/installer.sh > installer.sh
355+
bash installer.sh -s
351356
sudo apt install -y tarantool=${{ matrix.tarantool }} tarantool-dev=${{ matrix.tarantool }}
352357
353358
- name: Setup test tarantool instance

0 commit comments

Comments
 (0)