Skip to content

Commit 2d2d86b

Browse files
committed
ci: fix http dependency in tests
At this moment http dependency in tests is broken since we are trying to install the `http 2.1.0` lua rock. Now this rock is not available anymore due to tarantool/http#142 and that is the reason for test failures with the following error: http not found for Lua 5.1. Error: No results matching query were found for Lua 5.1. Checking if available for other Lua versions... make: *** [Makefile:10: .rocks] Error 1 Checking for Lua 5.2... Checking for Lua 5.3... Checking for Lua 5.4... Error: Process completed with exit code 2. Now http v2 is available under the `http-v2-legacy` lua rock and this patch switches the use of `http 2.1.0` to `http-v2-legacy 2.1.0`.
1 parent a23f8d4 commit 2d2d86b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rpm:
88
tarantoolctl rocks install luacov 0.13.0
99
tarantoolctl rocks install luacheck 0.26.0
1010
if [ -z $(CARTRIDGE_VERSION) ]; then \
11-
tarantoolctl rocks install http 2.1.0; \
11+
tarantoolctl rocks install http-v2-legacy 2.1.0; \
1212
else \
1313
tarantoolctl rocks install cartridge $(CARTRIDGE_VERSION); \
1414
fi

0 commit comments

Comments
 (0)