blob: 96f5d99ac2aed5669c15303b5c2be8601ec92858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
image: samthursfield/buildstream:0.1-20170627.1
before_script:
# Update to latest BuildStream commit
- cd ~/buildstream
- git remote update origin
- git reset --hard origin/master
- pip3 install .
- cd -
# Work around https://github.com/fedora-cloud/docker-brew-fedora/issues/14
- export LANG="C.UTF-8"
- export LC_ALL="C.UTF-8"
# We are limited to simple CI unless we provide our own GitLab CI runners.
stages:
- validate
validate:
stage: validate
script:
- bst --colors show gnu-toolchain.bst
|