Files
cpp-project-template/third_party/prometheus/3rdparty/civetweb/ci/travis/install_rocks.sh

15 lines
273 B
Bash
Raw Normal View History

2025-08-22 18:22:57 +08:00
#!/usr/bin/env bash
set -ev
source ci/travis/lua_env.sh
# add any rocks required for ci_tests to this list
# lua-curl depends on a libcurl development package (i.e. libcurl4-openssl-dev)
ROCKS=(lua-curl busted)
for ROCK in ${ROCKS[*]}
do
$LUAROCKS install $ROCK
done