2 windows_vm: vs2017-win2016
3 ubuntu_vm: ubuntu-18.04
4 ci_runner_image: trini/u-boot-gitlab-ci-runner:bionic-20200112-07Feb2020
5 # Add '-u 0' options for Azure pipelines, otherwise we get "permission
6 # denied" error when it tries to "useradd -m -u 1001 vsts_azpcontainer",
7 # since our $(ci_runner_image) user is not root.
12 - job: tools_only_windows
13 displayName: 'Ensure host tools build for Windows'
15 vmImage: $(windows_vm)
20 BASE_REPO: msys2-ci-base-i686
23 BASE_REPO: msys2-ci-base
26 git clone https://github.com/msys2/$(BASE_REPO).git %CD:~0,2%\$(MSYS_DIR)
27 displayName: 'Install MSYS2'
29 set PATH=%CD:~0,2%\$(MSYS_DIR)\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
30 %CD:~0,2%\$(MSYS_DIR)\usr\bin\pacman --noconfirm -Syyuu
31 displayName: 'Update MSYS2'
33 set PATH=%CD:~0,2%\$(MSYS_DIR)\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
34 %CD:~0,2%\$(MSYS_DIR)\usr\bin\pacman --noconfirm --needed -S make gcc bison diffutils openssl-devel
35 displayName: 'Install Toolchain'
37 set PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
38 echo make tools-only_defconfig tools-only NO_SDL=1 > build-tools.sh
39 %CD:~0,2%\$(MSYS_DIR)\usr\bin\bash -lc "bash build-tools.sh"
40 displayName: 'Build Host Tools'
42 # Tell MSYS2 we need a POSIX emulation layer
44 # Tell MSYS2 not to ‘cd’ our startup directory to HOME
48 displayName: 'Static code analysis with cppcheck'
52 image: $(ci_runner_image)
53 options: $(container_option)
55 - script: cppcheck --force --quiet --inline-suppr .
58 displayName: 'Search for TODO within source tree'
62 image: $(ci_runner_image)
63 options: $(container_option)
65 - script: grep -r TODO .
66 - script: grep -r FIXME .
67 - script: grep -r HACK . | grep -v HACKKIT
70 displayName: 'Some statistics about the code base'
74 image: $(ci_runner_image)
75 options: $(container_option)
80 displayName: 'Ensure all configs have MAINTAINERS entries'
84 image: $(ci_runner_image)
85 options: $(container_option)
88 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
91 displayName: 'Ensure host tools build'
95 image: $(ci_runner_image)
96 options: $(container_option)
99 make tools-only_config tools-only -j$(nproc)
102 displayName: 'Ensure env tools build'
104 vmImage: $(ubuntu_vm)
106 image: $(ci_runner_image)
107 options: $(container_option)
110 make tools-only_config envtools -j$(nproc)
113 displayName: 'Run binman, buildman, dtoc and patman testsuites'
115 vmImage: $(ubuntu_vm)
118 cat << EOF > build.sh
122 cat << "EOF" >> build.sh
123 git config --global user.name "Azure Pipelines"
124 git config --global user.email bmeng.cn@gmail.com
127 . /tmp/venv/bin/activate
128 pip install pyelftools
129 export UBOOT_TRAVIS_BUILD_DIR=/tmp/.bm-work/sandbox_spl
130 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
131 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
132 ./tools/buildman/buildman -o /tmp -P sandbox_spl
133 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
134 ./tools/buildman/buildman -t
136 ./tools/patman/patman --test
139 # We cannot use "container" like other jobs above, as buildman
140 # seems to hang forever with pre-configured "container" environment
141 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
144 displayName: 'test.py'
146 vmImage: $(ubuntu_vm)
150 TEST_PY_BD: "sandbox"
151 BUILDMAN: "^sandbox$"
153 TEST_PY_BD: "sandbox"
154 BUILDMAN: "^sandbox$"
155 OVERRIDE: "-O clang-7"
157 TEST_PY_BD: "sandbox_spl"
158 TEST_PY_TEST_SPEC: "test_ofplatdata"
159 BUILDMAN: "^sandbox_spl$"
161 TEST_PY_BD: "sandbox_flattree"
162 BUILDMAN: "^sandbox_flattree$"
164 TEST_PY_BD: "evb-ast2500"
165 TEST_PY_ID: "--id qemu"
166 BUILDMAN: "^evb-ast2500$"
168 TEST_PY_BD: "vexpress_ca15_tc2"
169 TEST_PY_ID: "--id qemu"
170 BUILDMAN: "^vexpress_ca15_tc2$"
172 TEST_PY_BD: "vexpress_ca9x4"
173 TEST_PY_ID: "--id qemu"
174 BUILDMAN: "^vexpress_ca9x4$"
175 integratorcp_cm926ejs:
176 TEST_PY_BD: "integratorcp_cm926ejs"
177 TEST_PY_ID: "--id qemu"
178 TEST_PY_TEST_SPEC: "not sleep"
179 BUILDMAN: "^integratorcp_cm926ejs$"
181 TEST_PY_BD: "qemu_arm"
182 TEST_PY_TEST_SPEC: "not sleep"
183 BUILDMAN: "^qemu_arm$"
185 TEST_PY_BD: "qemu_arm64"
186 TEST_PY_TEST_SPEC: "not sleep"
187 BUILDMAN: "^qemu_arm64$"
189 TEST_PY_BD: "qemu_mips"
190 TEST_PY_TEST_SPEC: "not sleep"
191 BUILDMAN: "^qemu_mips$"
193 TEST_PY_BD: "qemu_mipsel"
194 TEST_PY_TEST_SPEC: "not sleep"
195 BUILDMAN: "^qemu_mipsel$"
197 TEST_PY_BD: "qemu_mips64"
198 TEST_PY_TEST_SPEC: "not sleep"
199 BUILDMAN: "^qemu_mips64$"
201 TEST_PY_BD: "qemu_mips64el"
202 TEST_PY_TEST_SPEC: "not sleep"
203 BUILDMAN: "^qemu_mips64el$"
205 TEST_PY_BD: "qemu-ppce500"
206 TEST_PY_TEST_SPEC: "not sleep"
207 BUILDMAN: "^qemu-ppce500$"
209 TEST_PY_BD: "qemu-riscv64"
210 TEST_PY_TEST_SPEC: "not sleep"
211 BUILDMAN: "^qemu-riscv64$"
213 TEST_PY_BD: "qemu-x86"
214 TEST_PY_TEST_SPEC: "not sleep"
215 BUILDMAN: "^qemu-x86$"
217 TEST_PY_BD: "qemu-x86_64"
218 TEST_PY_TEST_SPEC: "not sleep"
219 BUILDMAN: "^qemu-x86_64$"
221 TEST_PY_BD: "zynq_zc702"
222 TEST_PY_ID: "--id qemu"
223 TEST_PY_TEST_SPEC: "not sleep"
224 BUILDMAN: "^zynq_zc702$"
226 TEST_PY_BD: "xilinx_versal_virt"
227 TEST_PY_ID: "--id qemu"
228 TEST_PY_TEST_SPEC: "not sleep"
229 BUILDMAN: "^xilinx_versal_virt$"
232 TEST_PY_ID: "--id qemu"
233 TEST_PY_TEST_SPEC: "not sleep"
239 # make environment variables available as tests are running inside a container
240 export WORK_DIR="${WORK_DIR}"
241 export TEST_PY_BD="${TEST_PY_BD}"
242 export TEST_PY_ID="${TEST_PY_ID}"
243 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
244 export BUILDMAN="${BUILDMAN}"
245 export OVERRIDE="${OVERRIDE}"
247 cat << "EOF" >> test.sh
248 # the below corresponds to .gitlab-ci.yml "before_script"
250 git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
251 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
252 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
253 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
254 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
255 cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
256 cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
257 cp /opt/grub/grubarm.efi ~/grub_arm.efi
258 # the below corresponds to .gitlab-ci.yml "script"
260 if [[ "${BUILDMAN}" != "" ]]; then
262 tools/buildman/buildman -o /tmp -P -E ${BUILDMAN} ${OVERRIDE} || ret=$?;
263 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
264 tools/buildman/buildman -o /tmp -sdeP ${BUILDMAN};
268 virtualenv -p /usr/bin/python3 /tmp/venv
269 . /tmp/venv/bin/activate
270 pip install -r test/py/requirements.txt
271 export UBOOT_TRAVIS_BUILD_DIR=/tmp/.bm-work/${TEST_PY_BD};
272 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
273 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
274 if [[ "${TEST_PY_BD}" != "" ]]; then
275 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID} -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}" --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
277 if [[ $ret -ne 0 ]]; then
281 # the below corresponds to .gitlab-ci.yml "after_script"
282 rm -rf /tmp/uboot-test-hooks /tmp/venv
285 # make current directory writeable to uboot user inside the container
286 # as sandbox testing need create files like spi flash images, etc.
287 # (TODO: clean up this in the future)
289 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
291 - job: build_the_world
292 displayName: 'Build the World'
294 vmImage: $(ubuntu_vm)
296 # Use almost the same target division in .travis.yml, only merged
297 # 4 small build jobs (arc/microblaze/nds32/xtensa) into one.
299 arc_microblaze_nds32_xtensa:
300 BUILDMAN: "arc microblaze nds32 xtensa"
301 arm11_arm7_arm920t_arm946es:
302 BUILDMAN: "arm11 arm7 arm920t arm946es"
304 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap"
306 BUILDMAN: "at91 -x armv7"
308 BUILDMAN: "at91 -x arm926ejs"
309 boundary_engicam_toradex:
310 BUILDMAN: "boundary engicam toradex"
312 BUILDMAN: "bcm -x mips"
314 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
316 BUILDMAN: "freescale&ls101"
318 BUILDMAN: "freescale&ls102"
320 BUILDMAN: "freescale&ls104"
322 BUILDMAN: "freescale&ls108"
324 BUILDMAN: "freescale&ls20"
326 BUILDMAN: "freescale&lx216"
328 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
330 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
334 BUILDMAN: "samsung socfpga"
346 BUILDMAN: "sun8i&armv7"
348 BUILDMAN: "sun8i&aarch64"
354 BUILDMAN: "arm -x arm11,arm7,arm9,aarch64,at91,bcm,freescale,kirkwood,mvebu,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap,rockchip,toradex,socfpga,k2,k3,zynq"
356 BUILDMAN: "sandbox x86"
358 BUILDMAN: "technexion"
368 BUILDMAN: "powerpc -x freescale"
370 BUILDMAN: "mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*"
372 BUILDMAN: "t208xrdb corenet_ds"
374 BUILDMAN: "t4qds b4860qds mpc83xx&freescale mpc86xx&freescale"
378 BUILDMAN: "p1_p2_rdb_pc"
380 BUILDMAN: "p1010rdb bsc91"
384 BUILDMAN: "tegra -x toradex"
386 BUILDMAN: "am33xx -x siemens"
392 BUILDMAN: "aarch64 -x bcm,k3,tegra,ls1,ls2,mvebu,uniphier,sunxi,samsung,rockchip,versal,zynq"
396 BUILDMAN: "sh -x arm"
398 BUILDMAN: "zynq&armv7"
400 BUILDMAN: "versal|zynqmp&aarch64"
405 cat << EOF > build.sh
408 # make environment variables available as tests are running inside a container
409 export BUILDMAN="${BUILDMAN}"
411 cat << "EOF" >> build.sh
412 if [[ "${BUILDMAN}" != "" ]]; then
414 tools/buildman/buildman -o /tmp -P -E ${BUILDMAN} ${OVERRIDE} || ret=$?;
415 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
416 tools/buildman/buildman -o /tmp -sdeP ${BUILDMAN};
422 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh