-
Notifications
You must be signed in to change notification settings - Fork 14
/
deps.sh
executable file
·47 lines (39 loc) · 1.64 KB
/
deps.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env bash
# Call this script to install test dependencies
set -e
TTCTL=tt
if ! [ -x "$(command -v tt)" ];
then
echo "tt not found"
exit 1
fi
# Test dependencies:
$TTCTL rocks install luatest 1.0.1
$TTCTL rocks install luacheck 0.25.0
$TTCTL rocks install luacov 0.13.0
# cluacov, luacov-coveralls and dependencies
$TTCTL rocks install https://raw.githubusercontent.com/luarocks/cluacov/master/cluacov-dev-1.rockspec
$TTCTL rocks install https://luarocks.org/manifests/dhkolf/dkjson-2.8-1.rockspec
$TTCTL rocks install https://raw.githubusercontent.com/keplerproject/luafilesystem/master/luafilesystem-scm-1.rockspec
$TTCTL rocks install https://raw.githubusercontent.com/moteus/lua-path/master/rockspecs/lua-path-scm-0.rockspec
# Most of this code is the workaround for
# https://github.com/moteus/luacov-coveralls/pull/30
# Remove it, when the pull request will be merged.
TMPDIR="$(mktemp -d)"
LUACOV_COVERALLS_ROCKSPEC_URL="https://raw.githubusercontent.com/moteus/luacov-coveralls/master/rockspecs/luacov-coveralls-scm-0.rockspec"
LUACOV_COVERALLS_ROCKSPEC_FILE="${TMPDIR}/luacov-coveralls-scm-0.rockspec"
curl -fsSL "${LUACOV_COVERALLS_ROCKSPEC_URL}" > "${LUACOV_COVERALLS_ROCKSPEC_FILE}"
sed -i -e 's@git://@git+https://@' "${LUACOV_COVERALLS_ROCKSPEC_FILE}"
$TTCTL rocks install "${LUACOV_COVERALLS_ROCKSPEC_FILE}"
rm "${LUACOV_COVERALLS_ROCKSPEC_FILE}"
rmdir "${TMPDIR}"
if [[ -n "$CARTRIDGE_VERSION" ]]
then
$TTCTL rocks install cartridge "$CARTRIDGE_VERSION"
$TTCTL rocks install migrations 0.4.2
else
VSHARD_VERSION="${VSHARD_VERSION:-0.1.24}"
$TTCTL rocks install vshard "$VSHARD_VERSION"
fi
$TTCTL rocks install ddl 1.6.2
$TTCTL rocks make