.gitlab-ci.yml 9.2 KB
Newer Older
1 2 3 4
# SPDX-License-Identifier: GPL-2.0+

# Grab our configured image.  The source for this is found at:
# https://gitlab.denx.de/u-boot/gitlab-ci-runner
5
image: trini/u-boot-gitlab-ci-runner:bionic-20200403-27Apr2020
6 7 8 9

# We run some tests in different order, to catch some failures quicker.
stages:
  - testsuites
10
  - test.py
11 12 13 14 15 16 17 18 19 20
  - world build

.buildman_and_testpy_template: &buildman_and_testpy_dfn
  tags: [ 'all' ]
  stage: test.py
  before_script:
    # Clone uboot-test-hooks
    - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
    - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
    - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
T
Tom Rini 已提交
21 22
    - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
    - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
H
Heinrich Schuchardt 已提交
23
    - cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
24
    - cp /opt/grub/grubriscv32.efi ~/grub_riscv32.efi
H
Heinrich Schuchardt 已提交
25 26
    - cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
    - cp /opt/grub/grubarm.efi ~/grub_arm.efi
27 28 29 30 31 32 33 34
    - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
        wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv32-bin.tar.xz | tar -C /tmp -xJ;
        export OPENSBI=/tmp/opensbi-0.6-rv32-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
      fi
    - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]]; then
        wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv64-bin.tar.xz | tar -C /tmp -xJ;
        export OPENSBI=/tmp/opensbi-0.6-rv64-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
      fi
35

36
  after_script:
H
Heinrich Schuchardt 已提交
37
    - rm -rf /tmp/uboot-test-hooks /tmp/venv
38
  script:
39
    # If we've been asked to use clang only do one configuration.
40
    - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
41 42
    - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
        --board ${TEST_PY_BD} ${OVERRIDE}
43 44 45
    - virtualenv -p /usr/bin/python3 /tmp/venv
    - . /tmp/venv/bin/activate
    - pip install -r test/py/requirements.txt
46
    # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
47
    - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
48
      export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
49
      ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
50
        ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
51
        --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
52

53
build all 32bit ARM platforms:
54 55 56 57
  tags: [ 'all' ]
  stage: world build
  script:
    - ret=0;
58 59
      ./tools/buildman/buildman -o /tmp -P -E -W arm -x aarch64 || ret=$?;
      if [[ $ret -ne 0 ]]; then
60
        ./tools/buildman/buildman -o /tmp -seP;
61 62
        exit $ret;
      fi;
63

64
build all 64bit ARM platforms:
65 66 67
  tags: [ 'all' ]
  stage: world build
  script:
68
    - virtualenv -p /usr/bin/python3 /tmp/venv
69 70
    - . /tmp/venv/bin/activate
    - pip install pyelftools
71
    - ret=0;
72 73
      ./tools/buildman/buildman -o /tmp -P -E -W aarch64 || ret=$?;
      if [[ $ret -ne 0 ]]; then
74
        ./tools/buildman/buildman -o /tmp -seP;
75 76
        exit $ret;
      fi;
77

78
build all PowerPC platforms:
79 80 81 82
  tags: [ 'all' ]
  stage: world build
  script:
    - ret=0;
83 84
      ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
      if [[ $ret -ne 0 ]]; then
85
        ./tools/buildman/buildman -o /tmp -seP;
86 87
        exit $ret;
      fi;
88

89
build all other platforms:
90 91 92 93
  tags: [ 'all' ]
  stage: world build
  script:
    - ret=0;
94 95
      ./tools/buildman/buildman -o /tmp -P -E -W -x arm,powerpc || ret=$?;
      if [[ $ret -ne 0 ]]; then
96
        ./tools/buildman/buildman -o /tmp -seP;
97 98
        exit $ret;
      fi;
99 100 101 102 103 104 105

# QA jobs for code analytics
# static code analysis with cppcheck (we can add --enable=all later)
cppcheck:
  tags: [ 'all' ]
  stage: testsuites
  script:
106
    - cppcheck -j$(nproc) --force --quiet --inline-suppr .
107 108 109 110 111 112 113 114 115 116 117

# search for TODO within source tree
grep TODO/FIXME/HACK:
  tags: [ 'all' ]
  stage: testsuites
  script:
    - grep -r TODO .
    - grep -r FIXME .
    # search for HACK within source tree and ignore HACKKIT board
    - grep -r HACK . | grep -v HACKKIT

118 119 120 121 122 123 124
# build HTML documentation
htmldocs:
  tags: [ 'all' ]
  stage: testsuites
  script:
    - make htmldocs

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
# some statistics about the code base
sloccount:
  tags: [ 'all' ]
  stage: testsuites
  script:
    - sloccount .

# ensure all configs have MAINTAINERS entries
Check for configs without MAINTAINERS entry:
  tags: [ 'all' ]
  stage: testsuites
  script:
    - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi

# Ensure host tools build
Build tools-only:
  tags: [ 'all' ]
  stage: testsuites
  script:
    - make tools-only_config tools-only -j$(nproc)

P
Pierre-Jean Texier 已提交
146 147 148 149 150 151 152
# Ensure env tools build
Build envtools:
  tags: [ 'all' ]
  stage: testsuites
  script:
    - make tools-only_config envtools -j$(nproc)

153
Run binman, buildman, dtoc, Kconfig and patman testsuites:
154 155 156
  tags: [ 'all' ]
  stage: testsuites
  script:
157 158 159
    - git config --global user.name "GitLab CI Runner";
      git config --global user.email trini@konsulko.com;
      export USER=gitlab;
160
      virtualenv -p /usr/bin/python3 /tmp/venv;
161
      . /tmp/venv/bin/activate;
162
      pip install pyelftools pytest;
163
      export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
164 165
      export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
      export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
166
      ./tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w sandbox_spl;
167 168 169
      ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
      ./tools/buildman/buildman -t;
      ./tools/dtoc/dtoc -t;
170 171
      ./tools/patman/patman --test;
      make testconfig
172 173 174 175 176 177 178 179

# Test sandbox with test.py
sandbox test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "sandbox"
  <<: *buildman_and_testpy_dfn

T
Tom Rini 已提交
180 181 182 183 184 185 186
sandbox with clang test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "sandbox"
    OVERRIDE: "-O clang-7"
  <<: *buildman_and_testpy_dfn

187 188 189 190
sandbox_spl test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "sandbox_spl"
191
    TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff"
192 193
  <<: *buildman_and_testpy_dfn

194 195 196 197 198 199 200
evb-ast2500 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "evb-ast2500"
    TEST_PY_ID: "--id qemu"
  <<: *buildman_and_testpy_dfn

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 266 267 268 269 270 271 272 273 274 275 276 277
sandbox_flattree test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "sandbox_flattree"
  <<: *buildman_and_testpy_dfn

vexpress_ca15_tc2 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "vexpress_ca15_tc2"
    TEST_PY_ID: "--id qemu"
  <<: *buildman_and_testpy_dfn

vexpress_ca9x4 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "vexpress_ca9x4"
    TEST_PY_ID: "--id qemu"
  <<: *buildman_and_testpy_dfn

integratorcp_cm926ejs test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "integratorcp_cm926ejs"
    TEST_PY_TEST_SPEC: "not sleep"
    TEST_PY_ID: "--id qemu"
  <<: *buildman_and_testpy_dfn

qemu_arm test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu_arm"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu_arm64 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu_arm64"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu_mips test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu_mips"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu_mipsel test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu_mipsel"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu_mips64 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu_mips64"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu_mips64el test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu_mips64el"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu-ppce500 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu-ppce500"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

278 279 280 281 282 283 284
qemu-riscv32 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu-riscv32"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

T
Tom Rini 已提交
285 286 287 288 289
qemu-riscv64 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu-riscv64"
    TEST_PY_TEST_SPEC: "not sleep"
290 291 292 293 294 295 296 297 298 299 300 301 302 303
  <<: *buildman_and_testpy_dfn

qemu-riscv32_spl test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu-riscv32_spl"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu-riscv64_spl test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu-riscv64_spl"
    TEST_PY_TEST_SPEC: "not sleep"
T
Tom Rini 已提交
304 305
  <<: *buildman_and_testpy_dfn

306 307 308 309 310 311 312 313 314 315 316 317 318 319
qemu-x86 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu-x86"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

qemu-x86_64 test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "qemu-x86_64"
    TEST_PY_TEST_SPEC: "not sleep"
  <<: *buildman_and_testpy_dfn

320
xilinx_zynq_virt test.py:
321 322
  tags: [ 'all' ]
  variables:
323
    TEST_PY_BD: "xilinx_zynq_virt"
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
    TEST_PY_TEST_SPEC: "not sleep"
    TEST_PY_ID: "--id qemu"
  <<: *buildman_and_testpy_dfn

xilinx_versal_virt test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "xilinx_versal_virt"
    TEST_PY_TEST_SPEC: "not sleep"
    TEST_PY_ID: "--id qemu"
  <<: *buildman_and_testpy_dfn

xtfpga test.py:
  tags: [ 'all' ]
  variables:
    TEST_PY_BD: "xtfpga"
    TEST_PY_TEST_SPEC: "not sleep"
    TEST_PY_ID: "--id qemu"
  <<: *buildman_and_testpy_dfn