All of lore.kernel.org
 help / color / mirror / Atom feed
From: Heiko Schocher <hs@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 6/6] travis-ci: compile with buildman when running test/py
Date: Thu, 27 Oct 2016 08:13:19 +0200	[thread overview]
Message-ID: <58119AFF.7060001@denx.de> (raw)
In-Reply-To: <20161026170536.2367-6-swarren@wwwdotorg.org>

Hello Stephen,

Am 26.10.2016 um 19:05 schrieb Stephen Warren:
> From: Stephen Warren <swarren@nvidia.com>
>
> Use buildman to compile any U-Boot binary tested by test/py. This
> re-uses all the work done elsewhere to make buildman work within
> Travis-CI, in particular related to toolchain downloading and buildman
> config file creation.
>
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
>   .travis.yml | 81 ++++++++++++++++++++++++++++++++++++++++---------------------
>   1 file changed, 54 insertions(+), 27 deletions(-)

Thanks!

Reviewed-by: Heiko Schocher <hs@denx.de>

bye,
Heiko

>
> diff --git a/.travis.yml b/.travis.yml
> index a537f0e34dd3..0faf03b11011 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -69,6 +69,9 @@ before_script:
>     - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then ./tools/buildman/buildman --fetch-arch xtensa ; fi
>
>   script:
> + # Comments must be outside the command strings below, or the Travis parser
> + # will get confused.
> + #
>    # Exit code 129 means warnings only.
>    - if [[ "${BUILDMAN}" != "" ]]; then
>        set +e;
> @@ -78,6 +81,15 @@ script:
>          exit $ret;
>        fi;
>      fi
> + # "not a_test_which_does_not_exist" is a dummy -k parameter which will
> + # never prevent any test from running. That way, we can always pass
> + # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
> + # value.
> + - if [[ "${TEST_PY_BD}" != "" ]]; then
> +     ./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 `cd .. && pwd`/.bm-work/${TEST_PY_BD};
> +   fi
>
>   matrix:
>     include:
> @@ -178,38 +190,53 @@ matrix:
>           - JOB="sloccount"
>         script:
>           - sloccount .
> +
>       # test/py
>       - env:
> -        - JOB="test.py sandbox"
> -      script:
> -        - ./test/py/test.py --bd sandbox --build
> +        - TEST_PY_BD="sandbox"
> +          BUILDMAN="^sandbox$"
> +          TOOLCHAIN="x86_64"
>       - env:
> -        - JOB="test.py ARM"
> -        - CROSS_COMPILE="/usr/bin/arm-linux-gnueabihf-"
> -      script:
> -        - ./test/py/test.py --bd vexpress_ca15_tc2 --id qemu --build;
> -          ./test/py/test.py --bd vexpress_ca9x4 --id qemu --build;
> -          ./test/py/test.py --bd integratorcp_cm926ejs --id qemu --build;
> +        - TEST_PY_BD="vexpress_ca15_tc2"
> +          TEST_PY_ID="--id qemu"
> +          BUILDMAN="^vexpress_ca15_tc2$"
>       - env:
> -        - JOB="test.py MIPS"
> -        - TOOLCHAIN="mips"
> -          CROSS_COMPILE="${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/mips-linux/bin/mips-linux-"
> -      script:
> -        - ./test/py/test.py --bd qemu_mips --build -k 'not sleep';
> -          ./test/py/test.py --bd qemu_mipsel --build -k 'not sleep';
> -          ./test/py/test.py --bd qemu_mips64 --build -k 'not sleep';
> -          ./test/py/test.py --bd qemu_mips64el --build -k 'not sleep';
> +        - TEST_PY_BD="vexpress_ca9x4"
> +          TEST_PY_ID="--id qemu"
> +          BUILDMAN="^vexpress_ca9x4$"
>       - env:
> -        - JOB="test.py PowerPC"
> -        - CROSS_COMPILE="/usr/bin/powerpc-linux-gnu-"
> -      script:
> -        - ./test/py/test.py --bd qemu-ppce500 --build -k 'not sleep'
> +        - TEST_PY_BD="integratorcp_cm926ejs"
> +          TEST_PY_ID="--id qemu"
> +          BUILDMAN="^integratorcp_cm926ejs$"
>       - env:
> -        - JOB="test.py x86-64"
> -        - TOOLCHAIN="x86_64"
> -          BUILD_ROM=yes
> -          CROSS_COMPILE="${HOME}/.buildman-toolchains/gcc-4.9.0-nolibc/x86_64-linux/bin/x86_64-linux-"
> -      script:
> -        - ./test/py/test.py --bd qemu-x86 --build -k 'not sleep'
> +        - TEST_PY_BD="qemu_mips"
> +          TEST_PY_TEST_SPEC="not sleep"
> +          BUILDMAN="^qemu_mips$"
> +          TOOLCHAIN="mips"
> +    - env:
> +        - TEST_PY_BD="qemu_mipsel"
> +          TEST_PY_TEST_SPEC="not sleep"
> +          BUILDMAN="^qemu_mipsel$"
> +          TOOLCHAIN="mips"
> +    - env:
> +        - TEST_PY_BD="qemu_mips64"
> +          TEST_PY_TEST_SPEC="not sleep"
> +          BUILDMAN="^qemu_mips64$"
> +          TOOLCHAIN="mips"
> +    - env:
> +        - TEST_PY_BD="qemu_mips64el"
> +          TEST_PY_TEST_SPEC="not sleep"
> +          BUILDMAN="^qemu_mips64el$"
> +          TOOLCHAIN="mips"
> +    - env:
> +        - TEST_PY_BD="qemu-ppce500"
> +          TEST_PY_TEST_SPEC="not sleep"
> +          BUILDMAN="^qemu-ppce500$"
> +    - env:
> +        - TEST_PY_BD="qemu-x76"
> +          TEST_PY_TEST_SPEC="not sleep"
> +          BUILDMAN="^qemu-x86$"
> +          TOOLCHAIN="x86_64"
> +          BUILD_ROM="yes"
>
>   # TODO make it perfect ;-r
>

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

  parent reply	other threads:[~2016-10-27  6:13 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-26 17:05 [U-Boot] [PATCH 1/6] travis-ci: Use = not : when writing ~/.buildman Stephen Warren
2016-10-26 17:05 ` [U-Boot] [PATCH 2/6] travis-ci: use correct exit code on errors Stephen Warren
2016-10-27  4:21   ` Heiko Schocher
2016-10-29 17:41   ` [U-Boot] [U-Boot, " Tom Rini
2016-10-26 17:05 ` [U-Boot] [PATCH 3/6] travis-ci: centralize ~/.buildman editing Stephen Warren
2016-10-27  4:21   ` Heiko Schocher
2016-10-29 17:41   ` [U-Boot] [U-Boot, " Tom Rini
2016-10-26 17:05 ` [U-Boot] [PATCH 4/6] travis-ci: use buildman -P everywhere Stephen Warren
2016-10-27  4:22   ` Heiko Schocher
2016-10-29 17:41   ` [U-Boot] [U-Boot,4/6] " Tom Rini
2016-10-26 17:05 ` [U-Boot] [PATCH 5/6] travis-ci: don't invoke exit on success Stephen Warren
2016-10-27  6:12   ` Heiko Schocher
2016-10-29 17:41   ` [U-Boot] [U-Boot,5/6] " Tom Rini
2016-10-26 17:05 ` [U-Boot] [PATCH 6/6] travis-ci: compile with buildman when running test/py Stephen Warren
2016-10-26 18:56   ` Stephen Warren
2016-10-26 18:59   ` Tom Rini
2016-10-26 19:04     ` Stephen Warren
2016-10-27  6:13   ` Heiko Schocher [this message]
2016-10-29 17:41   ` [U-Boot] [U-Boot, " Tom Rini
2016-10-27  4:20 ` [U-Boot] [PATCH 1/6] travis-ci: Use = not : when writing ~/.buildman Heiko Schocher
2016-10-29 17:41 ` [U-Boot] [U-Boot, " Tom Rini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=58119AFF.7060001@denx.de \
    --to=hs@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.