diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-01-30 04:06:43 +0100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-01-30 04:06:43 +0100 |
commit | 154216d483d5062e3c698ac240e6fc3fdccd9498 (patch) | |
tree | 3947813357a8b87ea37282734a98903c42c7b0b2 /test/distro | |
parent | ec7b65fd791ad9e5089bcf76afcfc3164422b74c (diff) | |
download | passt-154216d483d5062e3c698ac240e6fc3fdccd9498.tar passt-154216d483d5062e3c698ac240e6fc3fdccd9498.tar.gz passt-154216d483d5062e3c698ac240e6fc3fdccd9498.tar.bz2 passt-154216d483d5062e3c698ac240e6fc3fdccd9498.tar.lz passt-154216d483d5062e3c698ac240e6fc3fdccd9498.tar.xz passt-154216d483d5062e3c698ac240e6fc3fdccd9498.tar.zst passt-154216d483d5062e3c698ac240e6fc3fdccd9498.zip |
test/distro/ubuntu: Skip apt-get update for 16.04 on powerpc
Some recent change to xenial-updates broke dependencies for gcc,
it can't be installed anymore. Skipping apt-get update leaves gcc
dependencies in a consistent state, though.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'test/distro')
-rw-r--r-- | test/distro/ubuntu | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/distro/ubuntu b/test/distro/ubuntu index 6013122..b67c1f3 100644 --- a/test/distro/ubuntu +++ b/test/distro/ubuntu @@ -154,7 +154,9 @@ host guestfish --rw -a __IMG__ -i copy-in __GUEST_FILES__ /root/ host ./qrap 5 qemu-system-ppc64 -m 1024 -M pseries -nographic -nodefaults -serial stdio -no-reboot -nographic -vga none -hda __IMG__ -net socket,fd=5 -net nic,model=virtio host PS1='$ ' host dhclient -host apt-get update +# Skip apt-get update here: some updates to xenial-updates around 2022-01-30 +# broke dependencies for libc6 and gcc-5 -- note that powerpc is not officially +# supported on this version host apt-get -y install make gcc netcat-openbsd host make clean |