summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandan Singh <csingh43@bloomberg.net>2018-08-08 02:16:20 +0100
committerChandan Singh <csingh43@bloomberg.net>2018-08-08 02:18:20 +0100
commit80e670c7aa0423c11ca59aed3ccf67cb4d41e9ef (patch)
tree22bb04064948a46fc0f37d56cc7ff615b3691e2e
parentfa5a59f0a898fb7d6730775172404be907a788bf (diff)
downloadbuildstream-chandan/add-installable-check.tar.gz
WIP: Ensure that our source distribution installs correctlychandan/add-installable-check
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 93fbea779..eb566979f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,6 +7,7 @@ cache:
stages:
- prepare
+ - preflight
- test
- post
@@ -52,6 +53,17 @@ source_dist:
#####################################################
+# Preflight stage #
+#####################################################
+
+# Ensure that our source distribution can be installed successfully
+#
+test_install:
+ stage: preflight
+ script:
+ - pip3 install dist/*.tar.gz
+
+#####################################################
# Test stage #
#####################################################