summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoît Dejean <bdejean@gmail.com>2021-03-18 20:59:52 +0100
committerBenoît Dejean <bdejean@gmail.com>2021-03-18 21:02:28 +0100
commit8b75fd18c59d01ce216862a05cf5feb57c1a095e (patch)
tree063555b32d6db2f82eaeddbd9381f9a0550783dc
parente0e0e472a8026166fa378ef949beeefbc9a18b29 (diff)
downloadlibgtop-8b75fd18c59d01ce216862a05cf5feb57c1a095e.tar.gz
Split stages for install/distcheck.
-rw-r--r--.gitlab-ci.yml13
1 files changed, 13 insertions, 0 deletions
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"]