From 60238ff6aad2e14870bab1c7adee633976571423 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Wed, 30 Mar 2016 21:28:23 +0200 Subject: Set up Travis to build modified packages --- .travis/install-alpine | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 .travis/install-alpine (limited to '.travis/install-alpine') diff --git a/.travis/install-alpine b/.travis/install-alpine new file mode 100755 index 0000000000..fac726c2f8 --- /dev/null +++ b/.travis/install-alpine @@ -0,0 +1,33 @@ +#!/bin/sh +# vim: set ts=4: +set -eu + +. "$(dirname "$0")"/common.sh + +APK_TOOLS_URI='https://repository.fit.cvut.cz/mirrors/alpine/v3.3/main/x86_64/apk-tools-static-2.6.5-r1.apk' +APK_TOOLS_SHA256='03162d70e6d42eea77624a8da76d69e665ca19aa834361c3652414f111884636' + + +title 'Downloading apk-tools-static' + +cd /tmp +wget "$APK_TOOLS_URI" +echo "$APK_TOOLS_SHA256 $(basename "$APK_TOOLS_URI")" | sha256sum -c +tar -xzf $(basename "$APK_TOOLS_URI") + + +title 'Installing Alpine Linux' + +mkdir -p "$ALPINE_ROOT"/etc/apk +cd "$ALPINE_ROOT" + +cp "$CLONE_DIR"/.travis/repositories etc/apk/repositories +cp /etc/resolv.conf etc/resolv.conf + +/tmp/sbin/apk.static \ + --root . --allow-untrusted --update-cache --initdb --no-progress \ + add alpine-base + +mount -t proc none proc +mount --rbind /sys sys +mount --rbind /dev dev -- cgit v1.2.3