More debug in bin dir

This commit is contained in:
IamTheFij 2020-01-30 16:01:51 -08:00
parent a35ae1081b
commit cba660bf03
2 changed files with 29 additions and 22 deletions

View File

@ -1,25 +1,26 @@
kind: pipeline # ---
name: tests # kind: pipeline
# name: tests
trigger: #
event: # trigger:
- push # event:
- tag # - push
# - tag
steps: #
- name: run tests # steps:
image: ubuntu:bionic # - name: run tests
commands: # image: ubuntu:bionic
- apt-get update # commands:
- apt-get install -y make # - apt-get update
- make test # - apt-get install -y make
# - make test
--- ---
kind: pipeline kind: pipeline
name: linux-amd64 name: linux-amd64
depends_on: # depends_on:
- tests # - tests
trigger: trigger:
event: event:
@ -45,8 +46,8 @@ steps:
kind: pipeline kind: pipeline
name: linux-arm name: linux-arm
depends_on: # depends_on:
- tests # - tests
trigger: trigger:
event: event:
@ -75,8 +76,8 @@ steps:
kind: pipeline kind: pipeline
name: linux-arm64 name: linux-arm64
depends_on: # depends_on:
- tests # - tests
trigger: trigger:
event: event:

View File

@ -3,11 +3,17 @@
# Other repositories may use tag suffix instead # Other repositories may use tag suffix instead
ARG REPO=library ARG REPO=library
FROM multiarch/qemu-user-static:4.2.0-2 as qemu-user-static 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 ls -al /usr/bin
RUN echo "" > /usr/bin/dummy RUN echo "" > /usr/bin/dummy
RUN ls -al /usr/bin 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 FROM ${REPO}/python:3-alpine
# This should be the target qemu arch # This should be the target qemu arch