summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: f3d7013c6996bdc1e49715d44dd9494db6195ad1 (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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
image: buildstream/buildstream-fedora:latest

variables:
  YBD_base: "/cache/ybd_base"
  YBD_gits: "/cache/ybd_base/gits"
  GET_SOURCES_ATTEMPTS: 3

cache:
  paths:
  - "${YBD_gits}/"

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

  # Update to latest BuildStream
  - |
    cd ~/buildstream
    git pull origin master
    dnf install -y python3-pip
    pip3 install .
    cd -

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

  # 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

  # Enable push and pull for Baserock artifact cache
  - |
    mkdir -p ~/.config
    echo "artifacts:" > ~/.config/buildstream.conf
    echo "  pull-url: https://ostree.baserock.org/cache/" >> ~/.config/buildstream.conf
    if [ -n "$baserock_ostree_cache_private_key" ]; then
        echo "  push-url: ostree@ostree.baserock.org:cache" >> ~/.config/buildstream.conf
        echo "  push-port: 22200" >> ~/.config/buildstream.conf
    fi
    cat ~/.config/buildstream.conf

  # Install and configure YBD
  - |
    export LC_ALL="C.UTF-8"
    export CI_YBD_BRANCH=`[[ "$CI_BUILD_REF_NAME" =~ ^staging/fromybd/ ]] && echo -b ${CI_BUILD_REF_NAME#staging/fromybd/}` 
    git clone https://gitlab.com/baserock/spec.git
    git clone https://gitlab.com/baserock/ybd.git $CI_YBD_BRANCH
    cd ybd && ./install_dependencies.sh && cd ..
    pip install -r spec/requirements.txt


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

ybd-validate-all-definitions:
  stage: preprocess
  script:
  - python spec/quick_check.py .

ybd-build-system-x86_64-chroot-build:
  stage: build-1
  script:
  - ybd/ybd.py systems/build-system-x86_64-chroot.morph x86_64

ybd-build-system-x86_64-chroot-deploy:
  stage: deploy-1
  dependencies:
  - ybd-build-system-x86_64-chroot-build
  script:
  - ybd/ybd.py clusters/build-system-x86_64-chroot-deploy.morph x86_64
  artifacts:
    name: "${CI_BUILD_NAME}-${CI_BUILD_REF}"
    paths:
    - build-system-x86_64-chroot.tar

#build-system-armv7lhf-rootfs-build:
#  stage: build-1
#  script:
#  - sudo ybd/ybd.py systems/build-system-armv7lhf-rootfs.morph armv7lhf
#  tags:
#  - armv7l
#  only:
#  - master
#  - /^staging\/.*$/

ybd-devel-build-64:
  stage: build-2
  script:
  - ybd/ybd.py systems/devel-system-x86_64-generic.morph x86_64

ybd-genivi-baseline-build-64:
  stage: build-2
  script:
  - ybd/ybd.py genivi/systems/genivi-baseline-system-x86_64-generic.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64

ybd-genivi-demo-platform-build-64:
  stage: build-3
  script:
  - ybd/ybd.py genivi/systems/genivi-demo-platform-x86_64-generic.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64

ybd-ivi-build-64:
  stage: build-3
  script:
  - ybd/ybd.py ivi/systems/ivi-system-x86_64.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64

ybd-gnome-build-64:
  stage: build-3
  script:
  - ybd/ybd.py gnome/systems/gnome-system-x86_64.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64

ybd-minimal-build-64:
  stage: build-1
  script:
  - ybd/ybd.py systems/minimal-system-x86_64-chroot.morph x86_64

ybd-minimal-system-x86_64-chroot-deploy:
  stage: deploy-1
  dependencies:
  - ybd-minimal-build-64
  script:
  - ybd/ybd.py clusters/minimal-system-x86_64-chroot-deploy.morph x86_64
  artifacts:
    name: "${CI_BUILD_NAME}-${CI_BUILD_REF}"
    paths:
    - minimal-system-x86_64-chroot.tar

ybd-trove-build-64:
  stage: build-2
  script:
  - ybd/ybd.py trove/systems/trove-system-x86_64.morph x86_64

ybd-weston-build-64:
  stage: build-2
  script:
  - ybd/ybd.py weston/systems/weston-system-x86_64-generic.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64

ybd-weston-qt-build-64:
  stage: build-3
  script:
  - ybd/ybd.py weston/systems/weston-qt5-system-x86_64.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64


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

# Convert the Baserock definitions to BuildStream format
bst-convert:
  stage: preprocess
  script:
  # Install YBD and defs2bst
  - |
    if [ ! -d ./ybd ]; then
      git clone https://gitlab.com/baserock/ybd.git
      cd ybd && ./install_dependencies.sh && cd -
    ]; fi
    git clone https://gitlab.com/BuildStream/defs2bst.git
    echo "defs2bst version: $(git -C ./defs2bst rev-parse HEAD)"
  - ./convert
  artifacts:
    paths:
    - elements/

# Test building a common Baserock system
bst-build-build-system:
  stage: build-1
  script:
  - scripts/bst-build-or-show systems/build-system-content.bst

# Test building all converted Baserock systems
bst-build-base-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/base-system-content.bst

bst-build-devel-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/devel-system-content.bst

bst-build-genivi-demo-platform-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/genivi-demo-platform-content.bst

bst-build-gnome-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/gnome-system-content.bst

bst-build-ivi-demo-platform-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/ivi-system-content.bst

bst-build-minimal-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/minimal-system-content.bst

bst-build-openstack-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/openstack-system-content.bst

bst-build-trove-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/trove-system-content.bst

bst-build-weston-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/weston-system-content.bst

bst-build-weston-qt5-system:
  stage: build-2
  script:
  - scripts/bst-build-or-show systems/weston-qt5-system-content.bst

# Test cross building a toolchain and sysroot for each supported non-x86_64
# architecture.
bst-build-sysroot-armv8b64:
  stage: build-3
  script:
  - scripts/bst-cross-build-or-show armv8b64 gnu-toolchain/stage2.bst

bst-build-sysroot-armv8l64:
  stage: build-3
  script:
  - scripts/bst-cross-build-or-show armv8l64 gnu-toolchain/stage2.bst

bst-build-sysroot-ppc64b:
  stage: build-3
  script:
  - scripts/bst-cross-build-or-show ppc64b gnu-toolchain/stage2.bst

bst-build-sysroot-ppc64l:
  stage: build-3
  script:
  - scripts/bst-cross-build-or-show ppc64l gnu-toolchain/stage2.bst