My bad, thought you were part of the company :P
I'll find and check out the email though, thanks
+ ping -c 2 mailhog
PING mailhog (192.168.32.2) 56(84) bytes of data.
64 bytes from drone-YvhdPt36nq37UaXdmBzp.drone-HIlONzFoaQh2PDdtBT2O (192.168.32.2): icmp_seq=1 ttl=64 time=0.135 ms
64 bytes from drone-YvhdPt36nq37UaXdmBzp.drone-HIlONzFoaQh2PDdtBT2O (192.168.32.2): icmp_seq=2 ttl=64 time=0.064 ms
docker inspect -f '{{range.NetworkSettings.Networks}}{{.NetworkID}}{{end}}' mailhog
for example
I’d like to trigger independent deploy steps based on multiple pipelines. So that when I want to deploy one service the other service (in the same repo, but in a separate pipeline) does not get deployed as well. Something like:
when:
event:
- deploy $SERVICE_NAME
If it's possible it would be great to only run the deploy step instead of the whole pipeline to run again when I click DEPLOY.
Is there a good way of doing this?
environment
parameter to do so
Hello,
I am getting a "linter: duplicate step names" Error from drone after a push. We recently did an upgrade of our gitea, not sure if related.
I read from this dialog (https://gitter.im/drone/drone?at=5d320bee8285d81daa248e1b) , However our yaml looks correct, nothing changed on it, all step names are unique. What else could cause this issue?
Running the bin/drone --version shows we are at 1.2.1
kind: pipeline
type: docker
name: P3
clone:
disable: true
steps:
- name: clone
image: alpine/git
environment:
SECRET_KEY:
from_secret: secret_key_Misc_Projects
KNOWN_HOSTS:
from_secret: known_hosts_Misc_Projects
commands:
- mkdir "$HOME/.ssh"
- echo "$SECRET_KEY" > "$HOME/.ssh/id_ed25519"
- chmod 600 "$HOME/.ssh/id_ed25519"
- echo "$KNOWN_HOSTS" > "$HOME/.ssh/known_hosts"
- chmod 600 "$HOME/.ssh/known_hosts"
- git clone "git@gitea.domain.internal:$DRONE_REPO.git" .
- git checkout "$DRONE_COMMIT"
- name: Initial Test
image: centos:6.7
depends_on:
- clone
commands:
- echo "I am alive and testable!"
Any idea what could cause this?
looking in more detail it seems easy enough as the s3 key is the step , which is also the log_id
I wrote a script, in case anyone else needs it
https://gist.github.com/johanvdw/4ee0a8f67f094cc953598248f46ba9a0