diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-02-09 01:19:21 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-02-09 01:22:56 +0100 |
commit | 2678bad4a5ead6e5b6b86dcfd523ff6c50a96964 (patch) | |
tree | c8fd05544ebd3b5e6a5e6273ae76030fe18dcfe2 /.travis.yml | |
parent | 36f5cf8e4bbe863a5bcfaf33f5f0a460993a339f (diff) | |
download | apk-tools-2678bad4a5ead6e5b6b86dcfd523ff6c50a96964.tar.gz apk-tools-2678bad4a5ead6e5b6b86dcfd523ff6c50a96964.tar.bz2 apk-tools-2678bad4a5ead6e5b6b86dcfd523ff6c50a96964.tar.xz apk-tools-2678bad4a5ead6e5b6b86dcfd523ff6c50a96964.zip |
travis: update alpine-chroot-install to 0.7.0
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index b726147..be5799a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,14 +10,14 @@ env: - ARCH=ppc64le before_install: - - "wget 'https://raw.githubusercontent.com/alpinelinux/alpine-chroot-install/v0.5.1/alpine-chroot-install' \ - && echo '5414e27ceb85cefede5699ef2ec614f831cafd65 alpine-chroot-install' | sha1sum -c || exit 1" + - "wget 'https://raw.githubusercontent.com/alpinelinux/alpine-chroot-install/v0.7.0/alpine-chroot-install' \ + && echo '090d323d887ef3a2fd4e752428553f22a52b87bb alpine-chroot-install' | sha1sum -c || exit 1" - alpine() { /alpine/enter-chroot -u "$USER" "$@"; } install: - sudo sh alpine-chroot-install -a "$ARCH" -p 'build-base alpine-sdk libfetch-dev libressl libressl-dev linux-headers lua5.2-dev zlib-dev' before_script: - - /alpine/enter-chroot "addgroup $USER wheel && addgroup $USER abuild" + - /alpine/enter-chroot sh -c "addgroup $USER wheel && addgroup $USER abuild" - alpine abuild-keygen -ain script: - alpine make |