summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 50cca656eac5d11c8de60f083721dcd92b204828 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
image: buildstream/buildstream-fedora:latest

variables:
  # Store everything under the /builds directory. This is a separate Docker
  # volume. Note that GitLab CI will only cache stuff inside the build
  # directory. Note also that YBD recursively scans the current directory
  # to find what definitions to build -- that's why we put the cache in a
  # hidden directory.
  XDG_CACHE_HOME: "${CI_PROJECT_DIR}/.cache"
  DEFS2BST_SHA: '1dc5c0719de9357470b29ad4adc9b63f7012db86'
  GET_SOURCES_ATTEMPTS: 3

.bst_before_script: &bst_before_script
  before_script:
    - |
      export BST_SHA='b340f995455b997995fc55277a993d5f5a1656e5'  # 1.0.1
      export BST_EXTERNAL_SHA='c4cc10467d116450471ca9f756617ede7572814c'
      git clone https://gitlab.com/BuildStream/buildstream.git
      # Use specific version of BuildStream
      cd buildstream && git checkout $BST_SHA
      pip3 install .
      cd -
      git clone https://gitlab.com/BuildStream/bst-external.git
      # Use specific version of bst-external plugins
      cd bst-external && git checkout $BST_EXTERNAL_SHA
      pip3 install .
      cd -

    # Create ~/.ssh for storing keys
    - mkdir -p ~/.ssh

    # 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."
      else
          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

    # Trust the host key of the cache server.
    - ssh-keyscan -p 22200 ostree.baserock.org >> ~/.ssh/known_hosts

    # If we can push, then enable push and pull for Baserock artifact cache
    # (default config is pull only)
    - |
      if [ -n "$baserock_ostree_cache_private_key" ]; then
          mkdir -p ~/.config
          echo "projects:" > ~/.config/buildstream.conf
          echo "  baserock:" >> ~/.config/buildstream.conf
          echo "    artifacts:" >> ~/.config/buildstream.conf
          echo "      url: ssh://ostree@ostree.baserock.org:22200/cache" >> ~/.config/buildstream.conf
      fi
      cat ~/.config/buildstream.conf

# Store all the downloaded git and ostree repos in the distributed cache.
# This saves us fetching them from git.baserock.org and further afield
# on every build.
.bst_cache: &bst_cache
  cache:
    key: bst
    paths:
      - "${XDG_CACHE_HOME}/buildstream/sources/"

stages:
  - preprocess
  - build-1
  - deploy-1
  - build-2

##########################################
# BuildStream conversions and tests      #
##########################################

# Convert the Baserock definitions to BuildStream format
bst-convert:
  stage: preprocess
  <<: *bst_before_script
  script:
  # Clone last version of definitions with YBD systems
  - export DEFINITIONS_YBD_SHA='8f8992a18d55c3abf28d4b6fc8036bd39d3dc1cf'
  - git clone https://gitlab.com/baserock/definitions.git old-definitions-morph-format
  - git -C old-definitions-morph-format checkout $DEFINITIONS_YBD_SHA
  # Install YBD and defs2bst
  - |
    if [ ! -d ./ybd ]; then
      git clone https://gitlab.com/baserock/ybd.git
      git -C ybd checkout $YBD_SHA
      cd ybd && ./install_dependencies.sh && cd -
    fi
    git clone https://gitlab.com/BuildStream/defs2bst.git
    git -C defs2bst checkout $DEFS2BST_SHA
    echo "defs2bst version: $(git -C ./defs2bst rev-parse HEAD)"
  - ./convert
  artifacts:
    paths:
    - elements/

# Test building the simplest Baserock system first
bst-build-minimal-system:
  stage: build-1
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/minimal-system-content.bst
  <<: *bst_cache

bst-minimal-system-deploy:
  stage: deploy-1
  dependencies:
  - bst-build-minimal-system
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/minimal-system-image-x86_64.bst
  - bst checkout systems/minimal-system-image-x86_64.bst ./minimal-system
  - dnf install -y qemu-system-x86
  - scripts/test-minimal-system ./minimal-system/sda.img
  <<: *bst_cache
  artifacts:
    name: "${CI_BUILD_NAME}-${CI_BUILD_REF}"
    paths:
    - ./minimal-system/sda.img
    expire_in: 1 week

# Test building a converted Baserock system
bst-build-build-system-converted:
  stage: build-2
  dependencies:
    - bst-convert
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/build-system-content.bst
  <<: *bst_cache

# Test building the rest of the Baserock systems
bst-build-base-system:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/base-system-content.bst
  <<: *bst_cache

bst-build-build-system:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/build-system-content.bst
  <<: *bst_cache

bst-build-genivi-demo-platform-system:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/genivi-demo-platform-content.bst
  <<: *bst_cache

bst-build-gnome-system:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/gnome-system-content.bst
  <<: *bst_cache

bst-build-ivi-demo-platform-system:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/ivi-system-content.bst
  <<: *bst_cache

bst-build-openstack-system:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/openstack-system-content.bst
  <<: *bst_cache

bst-build-trove-system:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-build-or-show systems/trove-system-content.bst
  <<: *bst_cache

# Test cross building a toolchain and sysroot for each supported non-x86_64
# architecture.
bst-build-sysroot-armv8b64:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-cross-build-or-show armv8b64 gnu-toolchain/stage2.bst
  <<: *bst_cache

bst-build-sysroot-armv8l64:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-cross-build-or-show armv8l64 gnu-toolchain/stage2.bst
  <<: *bst_cache

bst-build-sysroot-ppc64b:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-cross-build-or-show ppc64b gnu-toolchain/stage2.bst
  <<: *bst_cache

bst-build-sysroot-ppc64l:
  stage: build-2
  dependencies: []
  <<: *bst_before_script
  script:
  - scripts/bst-cross-build-or-show ppc64l gnu-toolchain/stage2.bst
  <<: *bst_cache