From 8b75fd18c59d01ce216862a05cf5feb57c1a095e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Thu, 18 Mar 2021 20:59:52 +0100 Subject: [PATCH] Split stages for install/distcheck. --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c19428cf..bc4c129f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,19 @@ build-fedora: - make install - make distcheck +deploy-install: + stage: deploy + needs: ["build-fedora"] + script: + - make install + +package-distcheck: + stage: package + needs: ["build-fedora"] + script: + - make distcheck + + test-examples: stage: test needs: ["build-fedora"]