summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 -