From bebfcbdba203d42fd4ad7520f2167b0200076ec1 Mon Sep 17 00:00:00 2001 From: Jeff Date: Fri, 4 Feb 2022 14:38:50 -0500 Subject: [PATCH] move documentation builder closer to the top of the ci jobs --- .drone.jsonnet | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index e30202378..443561cfd 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -287,6 +287,10 @@ local docs_pipeline(name, image, extra_cmds=[], allow_fail=false) = { ], }], }, + // documentation builder + docs_pipeline('Documentation', + docker_base + 'docbuilder', + extra_cmds=['UPLOAD_OS=docs ./contrib/ci/drone-static-upload.sh']), // Various debian builds debian_pipeline('Debian sid (amd64)', docker_base + 'debian-sid'), @@ -346,11 +350,6 @@ local docs_pipeline(name, image, extra_cmds=[], allow_fail=false) = { ], jobs=4), - // documentation builder - docs_pipeline('Documentation', - docker_base + 'docbuilder', - extra_cmds=['UPLOAD_OS=docs ./contrib/ci/drone-static-upload.sh']), - // integration tests debian_pipeline('Router Hive', docker_base + 'ubuntu-lts',