From 2b5b2cdff3c3be4882911601e68fe63e95df8b6c Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 11 Apr 2020 19:31:00 +0200 Subject: [PATCH] fix pipeline deps --- .drone.jsonnet | 5 ++++- .drone.yml | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index f9f1220..3521feb 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -251,7 +251,10 @@ local PipelineNotifications = { }, ], depends_on: [ - 'docs', + 'build-package', + 'build-container-amd64', + 'build-container-arm64', + 'build-container-arm', ], trigger: { ref: ['refs/heads/master', 'refs/tags/**'], diff --git a/.drone.yml b/.drone.yml index 554b535..ed2c0b0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -395,10 +395,13 @@ trigger: - failure depends_on: -- docs +- build-package +- build-container-amd64 +- build-container-arm64 +- build-container-arm --- kind: signature -hmac: 3e6e5bc16fce1351d01113283724c7642644fa7be4726e77879986a08395080b +hmac: 8c305e3426a482058f2fe5efda2fefe4228583676cce9f70962456be10fbded9 ...