From 826d5a95c346f046f97745aebd05f427ec453a37 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 16 May 2019 12:08:22 +0200 Subject: [PATCH] Fix dpkg --add-architecture invocation --- .gitlab-ci.yml | 3 ++- tests/Makefile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f3600ae8e..03993fa1d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,8 @@ image: debian before_script: - - dpkg --add-architecture i386 --add-architecture arm64 + - dpkg --add-architecture i386 + - dpkg --add-architecture arm64 - apt-get update -qq - apt-get install -y \ libc6-dev:amd64 libc6-dev:i386 libc6-dev:arm64 \ diff --git a/tests/Makefile b/tests/Makefile index a3b988c52..1b3cd881d 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -8,7 +8,8 @@ TARGETS=native ia32 aarch64 # # The relevant packages that you need to run this: # -# dpkg --add-architecture i386 --add-architecture arm64 +# dpkg --add-architecture i386 +# dpkg --add-architecture arm64 # apt-get update -qq # apt-get install -y \ # libc6-dev:amd64 libc6-dev:i386 libc6-dev:arm64 \