summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaweł Krupa <pawel@krupa.net.pl>2018-09-30 12:09:18 +0200
committerGitHub <noreply@github.com>2018-09-30 12:09:18 +0200
commita618d49e4d9f0990b12b33fefc85ca9e616157a2 (patch)
tree7b02cdc56cfeaefa11f951e902a9f93e3ba68403
parentd536ba6a438b04166bd4c5337c9658e5d4c83ecb (diff)
run CI builds on alpine (#4329)
* run builds on alpine * add some essential packages
-rw-r--r--.travis.yml5
-rw-r--r--.travis/images/Dockerfile.alpine2
2 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 1074d89782..89c6210714 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,9 +60,8 @@ jobs:
script: ./.travis/containerized_build.sh centos7
- name: "CentOS 6"
script: ./.travis/containerized_build.sh centos6
-# TODO: cannot run installer without bash
-# - name: "alpine"
-# script: ./.travis/containerized_build.sh alpine
+ - name: "alpine"
+ script: ./.travis/containerized_build.sh alpine
- stage: "release"
name: "Docker"
script: docker/build.sh
diff --git a/.travis/images/Dockerfile.alpine b/.travis/images/Dockerfile.alpine
index b9df9afd84..15f527165f 100644
--- a/.travis/images/Dockerfile.alpine
+++ b/.travis/images/Dockerfile.alpine
@@ -1,5 +1,5 @@
FROM alpine:latest
-RUN apk add gcc make autoconf automake pkgconfig zlib-dev libuuid git
+RUN apk add bash gcc make autoconf automake pkgconfig zlib-dev libuuid git libmnl-dev util-linux-dev build-base
COPY . /code