We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 999cb50 commit 8abe2f2Copy full SHA for 8abe2f2
.travis.yml
@@ -2,6 +2,13 @@ language: rust
2
rust: stable
3
sudo: required
4
dist: trusty
5
+addons:
6
+ apt:
7
+ packages:
8
+ # register qemu interpreters because inside docker it is not possible
9
+ # it is required by qemu-debootstrap (used by s390x)
10
+ - binfmt-support
11
+ - qemu-user-static
12
services:
13
- docker
14
install:
ci/linux-image.sh
@@ -24,7 +24,7 @@ qemu-debootstrap \
24
rm -f $dest/var/lib/dpkg/status
25
mv $dest/bin/mount /mount.bak
26
cp $dest/bin/true $dest/bin/mount
27
-chroot $dest /debootstrap/debootstrap --second-stage
+chroot $dest /debootstrap/debootstrap --second-stage || cat $dest//debootstrap/debootstrap.log && false
28
mv -f /mount.bak $dest/bin/mount
29
30
# ssh
0 commit comments