2 windows_vm: vs2017-win2016
3 ubuntu_vm: ubuntu-18.04
4 ci_runner_image: trini/u-boot-gitlab-ci-runner:bionic-20200403-27Apr2020
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 -j$(nproc) --force --quiet --inline-suppr .
58 displayName: 'Build HTML documentation'
62 image: $(ci_runner_image)
63 options: $(container_option)
65 - script: make htmldocs
68 displayName: 'Search for TODO within source tree'
72 image: $(ci_runner_image)
73 options: $(container_option)
75 - script: grep -r TODO .
76 - script: grep -r FIXME .
77 - script: grep -r HACK . | grep -v HACKKIT
80 displayName: 'Some statistics about the code base'
84 image: $(ci_runner_image)
85 options: $(container_option)
90 displayName: 'Ensure all configs have MAINTAINERS entries'
94 image: $(ci_runner_image)
95 options: $(container_option)
98 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
101 displayName: 'Ensure host tools build'
103 vmImage: $(ubuntu_vm)
105 image: $(ci_runner_image)
106 options: $(container_option)
109 make tools-only_config tools-only -j$(nproc)
112 displayName: 'Ensure env tools build'
114 vmImage: $(ubuntu_vm)
116 image: $(ci_runner_image)
117 options: $(container_option)
120 make tools-only_config envtools -j$(nproc)
123 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
125 vmImage: $(ubuntu_vm)
128 cat << EOF > build.sh
132 cat << "EOF" >> build.sh
133 git config --global user.name "Azure Pipelines"
134 git config --global user.email bmeng.cn@gmail.com
136 virtualenv -p /usr/bin/python3 /tmp/venv
137 . /tmp/venv/bin/activate
138 pip install pyelftools pytest
139 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
140 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
141 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
142 ./tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w sandbox_spl
143 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
144 ./tools/buildman/buildman -t
146 ./tools/patman/patman --test
147 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
150 # We cannot use "container" like other jobs above, as buildman
151 # seems to hang forever with pre-configured "container" environment
152 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
155 displayName: 'test.py'
157 vmImage: $(ubuntu_vm)
161 TEST_PY_BD: "sandbox"
163 TEST_PY_BD: "sandbox"
164 OVERRIDE: "-O clang-10"
166 TEST_PY_BD: "sandbox_spl"
167 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff"
169 TEST_PY_BD: "sandbox_flattree"
171 TEST_PY_BD: "evb-ast2500"
172 TEST_PY_ID: "--id qemu"
174 TEST_PY_BD: "vexpress_ca15_tc2"
175 TEST_PY_ID: "--id qemu"
177 TEST_PY_BD: "vexpress_ca9x4"
178 TEST_PY_ID: "--id qemu"
179 integratorcp_cm926ejs:
180 TEST_PY_BD: "integratorcp_cm926ejs"
181 TEST_PY_ID: "--id qemu"
182 TEST_PY_TEST_SPEC: "not sleep"
184 TEST_PY_BD: "qemu_arm"
185 TEST_PY_TEST_SPEC: "not sleep"
187 TEST_PY_BD: "qemu_arm64"
188 TEST_PY_TEST_SPEC: "not sleep"
190 TEST_PY_BD: "qemu_mips"
191 TEST_PY_TEST_SPEC: "not sleep"
193 TEST_PY_BD: "qemu_mipsel"
194 TEST_PY_TEST_SPEC: "not sleep"
196 TEST_PY_BD: "qemu_mips64"
197 TEST_PY_TEST_SPEC: "not sleep"
199 TEST_PY_BD: "qemu_mips64el"
200 TEST_PY_TEST_SPEC: "not sleep"
202 TEST_PY_BD: "qemu-ppce500"
203 TEST_PY_TEST_SPEC: "not sleep"
205 TEST_PY_BD: "qemu-riscv32"
206 TEST_PY_TEST_SPEC: "not sleep"
208 TEST_PY_BD: "qemu-riscv64"
209 TEST_PY_TEST_SPEC: "not sleep"
211 TEST_PY_BD: "qemu-riscv32_spl"
212 TEST_PY_TEST_SPEC: "not sleep"
214 TEST_PY_BD: "qemu-riscv64_spl"
215 TEST_PY_TEST_SPEC: "not sleep"
217 TEST_PY_BD: "qemu-x86"
218 TEST_PY_TEST_SPEC: "not sleep"
220 TEST_PY_BD: "qemu-x86_64"
221 TEST_PY_TEST_SPEC: "not sleep"
223 TEST_PY_BD: "xilinx_zynq_virt"
224 TEST_PY_ID: "--id qemu"
225 TEST_PY_TEST_SPEC: "not sleep"
227 TEST_PY_BD: "xilinx_versal_virt"
228 TEST_PY_ID: "--id qemu"
229 TEST_PY_TEST_SPEC: "not sleep"
232 TEST_PY_ID: "--id qemu"
233 TEST_PY_TEST_SPEC: "not sleep"
238 # make environment variables available as tests are running inside a container
239 export WORK_DIR="${WORK_DIR}"
240 export TEST_PY_BD="${TEST_PY_BD}"
241 export TEST_PY_ID="${TEST_PY_ID}"
242 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
243 export OVERRIDE="${OVERRIDE}"
245 cat << "EOF" >> test.sh
246 # the below corresponds to .gitlab-ci.yml "before_script"
248 git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
249 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
250 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
251 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
252 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
253 cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
254 cp /opt/grub/grubriscv32.efi ~/grub_riscv32.efi
255 cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
256 cp /opt/grub/grubarm.efi ~/grub_arm.efi
257 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
258 wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv32-bin.tar.xz | tar -C /tmp -xJ;
259 export OPENSBI=/tmp/opensbi-0.6-rv32-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
261 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]]; then
262 wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv64-bin.tar.xz | tar -C /tmp -xJ;
263 export OPENSBI=/tmp/opensbi-0.6-rv64-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
265 # the below corresponds to .gitlab-ci.yml "script"
267 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
268 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
269 virtualenv -p /usr/bin/python3 /tmp/venv
270 . /tmp/venv/bin/activate
271 pip install -r test/py/requirements.txt
272 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
273 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
274 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
275 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID} ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
276 # the below corresponds to .gitlab-ci.yml "after_script"
277 rm -rf /tmp/uboot-test-hooks /tmp/venv
280 # make current directory writeable to uboot user inside the container
281 # as sandbox testing need create files like spi flash images, etc.
282 # (TODO: clean up this in the future)
284 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
286 - job: build_the_world
287 displayName: 'Build the World'
289 vmImage: $(ubuntu_vm)
291 # Use almost the same target division in .travis.yml, only merged
292 # 4 small build jobs (arc/microblaze/nds32/xtensa) into one.
294 arc_microblaze_nds32_xtensa:
295 BUILDMAN: "arc microblaze nds32 xtensa"
296 arm11_arm7_arm920t_arm946es:
297 BUILDMAN: "arm11 arm7 arm920t arm946es"
299 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap"
301 BUILDMAN: "at91 -x armv7"
303 BUILDMAN: "at91 -x arm926ejs"
304 boundary_engicam_toradex:
305 BUILDMAN: "boundary engicam toradex"
307 BUILDMAN: "bcm -x mips"
309 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
311 BUILDMAN: "freescale&ls101"
313 BUILDMAN: "freescale&ls102"
315 BUILDMAN: "freescale&ls104"
317 BUILDMAN: "freescale&ls108"
319 BUILDMAN: "freescale&ls20"
321 BUILDMAN: "freescale&lx216"
323 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
325 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
329 BUILDMAN: "samsung socfpga"
341 BUILDMAN: "sun8i&armv7"
343 BUILDMAN: "sun8i&aarch64"
349 BUILDMAN: "arm -x arm11,arm7,arm9,aarch64,at91,bcm,freescale,kirkwood,mvebu,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap,rk,toradex,socfpga,k2,k3,zynq"
351 BUILDMAN: "sandbox x86"
353 BUILDMAN: "technexion"
363 BUILDMAN: "powerpc -x freescale"
365 BUILDMAN: "mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*"
367 BUILDMAN: "t208xrdb corenet_ds"
369 BUILDMAN: "t4qds b4860qds mpc83xx&freescale mpc86xx&freescale"
373 BUILDMAN: "p1_p2_rdb_pc"
375 BUILDMAN: "p1010rdb bsc91"
379 BUILDMAN: "tegra -x toradex"
381 BUILDMAN: "am33xx -x siemens"
387 BUILDMAN: "aarch64 -x bcm,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,sunxi,samsung,socfpga,rk,versal,zynq"
391 BUILDMAN: "sh -x arm"
393 BUILDMAN: "zynq&armv7"
395 BUILDMAN: "versal|zynqmp&aarch64"
400 cat << EOF > build.sh
403 # make environment variables available as tests are running inside a container
404 export BUILDMAN="${BUILDMAN}"
406 cat << "EOF" >> build.sh
407 if [[ "${BUILDMAN}" != "" ]]; then
409 tools/buildman/buildman -o /tmp -P -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
410 if [[ $ret -ne 0 ]]; then
411 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
417 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh