Files
libiscsi/ci/install.sh
Bart Van Assche b446ab3188 ci: Switch from Travis to AppVeyor
Since June 15th, 2021, the building on travis-ci.org is ceased. Hence switch
to AppVeyor.
2021-07-16 21:31:50 -07:00

18 lines
233 B
Bash
Executable File

#!/bin/bash
case "$(uname)" in
Linux)
packages=(
libcunit1-dev
libgcrypt20-dev
librdmacm-dev
xsltproc
)
for p in "${packages[@]}"; do
sudo sh -c "apt-get install -y $p"
done
;;
Darwin)
;;
esac