summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2017-10-25 14:57:12 +0100
committerJavier Jardón <jjardon@gnome.org>2017-10-26 11:40:00 +0100
commit94b209c9a799a6a5316587df5d74960386ee0e86 (patch)
tree9767c9cce3fc867002264d9d29522ce4437111d8
parent5e189422064c9bb85dfa89eb96772fa18f258396 (diff)
downloaddefinitions-94b209c9a799a6a5316587df5d74960386ee0e86.tar.gz
.gitlab-ci.yml: Use specific version of BuildStream instead current master
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 44019a3a..afd25962 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,6 +9,7 @@ variables:
XDG_CACHE_HOME: "${CI_PROJECT_DIR}/.cache"
YBD_base: "/cache/ybd_base"
YBD_gits: "${CI_PROJECT_DIR}/.cache/ybd_base/gits"
+ BST_SHA: 'b14a0c575991f3b75aa15b21b2652186b62d0a09'
GET_SOURCES_ATTEMPTS: 3
# Store all the downloaded git and ostree repos in the distributed cache.
@@ -39,11 +40,10 @@ variables:
.bst_before_script: &bst_before_script
before_script:
- # Update to latest BuildStream
+ # Use specific version of BuildStream
- |
- cd ~/buildstream
- git pull origin master
- dnf install -y python3-pip
+ git clone https://gitlab.com/BuildStream/buildstream.git
+ cd buildstream && git checkout $BST_SHA
pip3 install .
cd -