Debug working dir
continuous-integration/drone/push Build is failing Details

This commit is contained in:
IamTheFij 2019-06-04 17:33:15 -07:00
parent ec9a12a983
commit b5364e3bf9
2 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ steps:
- name: get qemu
image: busybox
commands:
- ./get_qemu.sh x86_64
- sh ./get_qemu.sh x86_64
- name: build
image: plugins/docker
@ -63,7 +63,7 @@ steps:
- name: get qemu
image: busybox
commands:
- ./get_qemu.sh arm
- sh ./get_qemu.sh arm
- name: build
image: plugins/docker
@ -97,7 +97,7 @@ steps:
- name: get qemu
image: busybox
commands:
- ./get_qemu.sh arm64
- sh ./get_qemu.sh arm64
- name: build
image: plugins/docker

View File

@ -8,7 +8,7 @@ cd build
# Multiple args can be passed in, but in most cases (Makefile and .drone.yml) we only use one at a time
for target_arch in $*; do
wget -N https://github.com/multiarch/qemu-user-static/releases/download/$VERSION/${HOST_ARCH}_qemu-${target_arch}-static.tar.gz
wget https://github.com/multiarch/qemu-user-static/releases/download/$VERSION/${HOST_ARCH}_qemu-${target_arch}-static.tar.gz
tar -xvf ${HOST_ARCH}_qemu-${target_arch}-static.tar.gz
rm ${HOST_ARCH}_qemu-${target_arch}-static.tar.gz
done