summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 9c26b6b0a2523b9ee49bec66cb213447f12a8124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
image: samthursfield/buildstream:0.1-20170621.1

before_script:
  # Update to latest BuildStream
  - |
    cd ~/buildstream
    git pull origin master
    pip3 install .
    cd -

  # Diagnostics
  - |
    mount
    df -h
    whoami

  # Work around https://github.com/fedora-cloud/docker-brew-fedora/issues/14
  - export LANG="C.UTF-8"
  - export LC_ALL="C.UTF-8"

  # Store cache in the shared Docker volume
  - export XDG_CACHE_HOME=/cache

  # Private key stored as a protected variable that allows pushing to
  # ostree@ostree.baserock.org
  - |
    if [ -z "$baserock_ostree_cache_private_key" ]; then
        echo >&2 "Private key for ostree.baserock.org is not available."
        exit 1
    else
        mkdir -p ~/.ssh
        echo "$baserock_ostree_cache_private_key" > ~/.ssh/id_rsa
        chmod 600 ~/.ssh/id_rsa
        ssh-keygen -y -f ~/.ssh/id_rsa > ~/.ssh/id_rsa.pub
    fi

  # Enable push and pull for Baserock artifact cache
  - |
    mkdir -p ~/.config
    cat > ~/.config/buildstream.conf <<EOF
    artifacts:
      pull-url: https://ostree.baserock.org/cache/
      push-url: ostree@ostree.baserock.org:cache
      push-port: 22200
    EOF

stages:
  - build

build-build-system:
  stage: build
  script:
  - bst --colors build systems/build-system-content.bst