diff --git a/.drone.yml b/.drone.yml index 5256834..1797a10 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,25 +1,26 @@ -kind: pipeline -name: tests - -trigger: - event: - - push - - tag - -steps: - - name: run tests - image: ubuntu:bionic - commands: - - apt-get update - - apt-get install -y make - - make test +# --- +# kind: pipeline +# name: tests +# +# trigger: +# event: +# - push +# - tag +# +# steps: +# - name: run tests +# image: ubuntu:bionic +# commands: +# - apt-get update +# - apt-get install -y make +# - make test --- kind: pipeline name: linux-amd64 -depends_on: - - tests +# depends_on: +# - tests trigger: event: @@ -45,8 +46,8 @@ steps: kind: pipeline name: linux-arm -depends_on: - - tests +# depends_on: +# - tests trigger: event: @@ -75,8 +76,8 @@ steps: kind: pipeline name: linux-arm64 -depends_on: - - tests +# depends_on: +# - tests trigger: event: diff --git a/Dockerfile b/Dockerfile index eadbf27..d9d68d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,11 +3,17 @@ # Other repositories may use tag suffix instead ARG REPO=library FROM multiarch/qemu-user-static:4.2.0-2 as qemu-user-static -RUN ls -al /usr + +# What's going on here? Why does the dir go away? RUN ls -al /usr/bin RUN echo "" > /usr/bin/dummy RUN ls -al /usr/bin +# How about bin? +RUN ls -al /bin +RUN echo "" > /bin/dummy +RUN ls -al /bin + FROM ${REPO}/python:3-alpine # This should be the target qemu arch