debug
continuous-integration/drone/push Build is failing Details

init
shnee 3 years ago
parent ffc269e83c
commit 3d684e64f1

@ -4,6 +4,7 @@ type: docker
name: docker-build
steps:
- name: build
image: docker.shnee.net/shnee/dind:19.03
pull: always
@ -20,6 +21,7 @@ steps:
- eval $(ssh-agent -s)
- echo "$SSH_KEY" | ssh-add -
- ssh-keyscan -p 222 -H git.shnee.net > ~/.ssh/known_hosts 2> /dev/null
- git submodule update --init
- make
- make push-all

@ -0,0 +1,7 @@
FROM fedora:36
# Install ansible using dnf. We originally were going to have a flag for whether
# to use dnf or pip to install ansible however it looks like dnf installs all
# the python libs in the same location that pip would, therefore there doesn't
# seem to be a meaningful difference between the 2 install options.
RUN dnf install -y ansible

@ -0,0 +1,7 @@
FROM fedora:37
# Install ansible using dnf. We originally were going to have a flag for whether
# to use dnf or pip to install ansible however it looks like dnf installs all
# the python libs in the same location that pip would, therefore there doesn't
# seem to be a meaningful difference between the 2 install options.
RUN dnf install -y ansible

@ -0,0 +1,7 @@
FROM fedora:latest
# Install ansible using dnf. We originally were going to have a flag for whether
# to use dnf or pip to install ansible however it looks like dnf installs all
# the python libs in the same location that pip would, therefore there doesn't
# seem to be a meaningful difference between the 2 install options.
RUN dnf install -y ansible
Loading…
Cancel
Save