aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-05-24 11:34:04 +0200
committerLoïc Hoguin <[email protected]>2018-05-25 09:54:00 +0200
commit058fac3daae2b20ce8e5fc8e0efa76e5f12cf177 (patch)
tree7d7ddfef11f60012b74b6282a4b75197a5e0e8bf
parent1c026e8e83aa2619624c41b15fb8416414b469e2 (diff)
downloadci-058fac3daae2b20ce8e5fc8e0efa76e5f12cf177.tar.gz
ci-058fac3daae2b20ce8e5fc8e0efa76e5f12cf177.tar.bz2
ci-058fac3daae2b20ce8e5fc8e0efa76e5f12cf177.zip
Add more packages for cowboy and esdl2
CentOS has SDL2 2.0.3 and that's too old for me to support so it won't be tested.
-rwxr-xr-xalpine.sh3
-rwxr-xr-xarchlinux.sh3
-rwxr-xr-xdebian.sh3
-rwxr-xr-xubuntu.sh3
4 files changed, 8 insertions, 4 deletions
diff --git a/alpine.sh b/alpine.sh
index faaf941..095ff52 100755
--- a/alpine.sh
+++ b/alpine.sh
@@ -9,7 +9,8 @@ RELEASE=edge
ARCH=amd64
PACKAGES="pcre ca-certificates openssl-dev ncurses-dev zlib-dev \
openssh bash curl zsh vim sudo erlang git build-base autoconf gawk \
- go glide shadow rsync"
+ go glide shadow rsync sdl2-dev sdl2_image-dev sdl2_ttf-dev \
+ cppcheck clang-analyzer"
for f in ci.d/*; do source "$f"; done
diff --git a/archlinux.sh b/archlinux.sh
index 3f41174..75cbd83 100755
--- a/archlinux.sh
+++ b/archlinux.sh
@@ -8,7 +8,8 @@ DIST=archlinux
RELEASE=current
ARCH=amd64
PACKAGES="cronie openssh openssl-1.0 zsh vim sudo erlang-nox git make \
- autoconf automake gcc go glide mercurial subversion rsync"
+ autoconf automake gcc go glide mercurial subversion rsync \
+ sdl2 sdl2_image sdl2_ttf gnu-netcat cppcheck clang"
for f in ci.d/*; do source "$f"; done
diff --git a/debian.sh b/debian.sh
index 4c880f6..72d580b 100755
--- a/debian.sh
+++ b/debian.sh
@@ -9,7 +9,8 @@ RELEASE=stretch
ARCH=amd64
PACKAGES="gnupg apt-transport-https curl libssl1.0-dev libncurses5-dev \
zsh vim sudo erlang-nox git make autoconf automake gcc \
- golang golang-glide rsync"
+ golang golang-glide rsync \
+ libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev cppcheck clang"
for f in ci.d/*; do source "$f"; done
diff --git a/ubuntu.sh b/ubuntu.sh
index 9a943f5..53fc004 100755
--- a/ubuntu.sh
+++ b/ubuntu.sh
@@ -8,7 +8,8 @@ DIST=ubuntu
RELEASE=artful
ARCH=amd64
PACKAGES="curl libssl-dev libncurses5-dev zsh vim sudo erlang-nox git \
- make autoconf automake gcc golang golang-glide rsync"
+ make autoconf automake gcc golang golang-glide rsync \
+ libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev cppcheck clang"
for f in ci.d/*; do source "$f"; done