Since June 15th, 2021, the building on travis-ci.org is ceased. Hence switch to AppVeyor.
18 lines
233 B
Bash
Executable File
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
|