From 8992ac1d335be2efe63dcde0f5e446e3bffbbfeb Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 10 Jan 2020 16:06:35 -0800 Subject: [PATCH] Add qemu binary download --- .drone.star | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.drone.star b/.drone.star index 83267be..0283670 100644 --- a/.drone.star +++ b/.drone.star @@ -170,6 +170,11 @@ def push_to_docker(ctx): ], }, "steps": [ + { + "name": "get qemu", + "image": "busybox", + "commands": ["sh ./get_qemu.sh x86_64 arm aarch64"], + }, push_docker_step("linux-amd64", "x86_64", "library"), push_docker_step("linux-arm", "arm", "arm32v6"), push_docker_step("linux-arm64", "aarch64", "arm64v8"),