From 176ca86c840f7f1b2cbb1a666834898a6f5d57e3 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Mon, 31 Jul 2017 13:17:31 +0000 Subject: [PATCH] parallel jessie/stretch CI build --- .gitlab-ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 05e504f..c3ada4b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,3 +37,28 @@ upload:pkg: dependencies: - build:pkg +build:src-stretch: + stage: build_src + image: "ai/build:stretch" + script: "build-dsc" + artifacts: + paths: + - build-deb/ + +build:pkg-stretch: + stage: build_pkg + image: "ai/build:stretch" + script: "build-deb" + dependencies: + - build:src-stretch + artifacts: + paths: + - output-deb/ + +upload:pkg-stretch: + stage: upload + image: "ai/pkg:base" + script: "upload-packages" + dependencies: + - build:pkg-stretch + -- GitLab