ci: Switch from Travis to AppVeyor

Since June 15th, 2021, the building on travis-ci.org is ceased. Hence switch
to AppVeyor.
This commit is contained in:
Bart Van Assche
2021-07-16 20:52:09 -07:00
parent c49461e4b7
commit b446ab3188
3 changed files with 32 additions and 26 deletions

17
ci/install.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/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