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
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:

View File

@ -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