From 0b69f210c4fcaade47312c448e013791f0a222a7 Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Fri, 26 Mar 2021 15:16:24 +0100 Subject: [PATCH] fix(.circleci): correct job dependency The `publish/packages-deb-dev` failed because it wrongly required `tests/integration-static` (that has `/build-static` and `/source-static`) instead of `tests/integration` which comes with both `/build` and `/source`. Co-authored-by: Leonardo Di Donato Signed-off-by: Leonardo Grasso --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a7fc1dda..68305dff 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -680,7 +680,7 @@ workflows: branches: only: master requires: - - "tests/integration-static" + - "tests/integration" # todo(leogr): the cleanup job is intende to work with bintray, now deprecated, # do we still need it? # - "cleanup/packages-dev":