diff options
author | Tom Rini <trini@konsulko.com> | 2022-07-20 07:13:35 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-20 17:56:40 -0400 |
commit | 8e6dddd16fc645bc92b2c0dd1a05363c2cf263df (patch) | |
tree | 806982c646cd9b890c66df52edd57669d8fb02b3 | |
parent | 0be541007bd1e65827ea4e81c2b8e6873f7a7c5f (diff) | |
download | u-boot-8e6dddd16fc645bc92b2c0dd1a05363c2cf263df.tar.gz |
Move set -ex, see where pylint azure job is
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | .azure-pipelines.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 9b32ee998f7..82c71a17627 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -171,7 +171,6 @@ stages: steps: - script: | cat << EOF > build.sh - set -ex cd ${WORK_DIR} EOF cat << "EOF" >> build.sh @@ -186,6 +185,7 @@ stages: export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH} ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl + set -ex ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test ./tools/buildman/buildman -t ./tools/dtoc/dtoc -t @@ -218,8 +218,8 @@ stages: options: $(container_option) steps: - script: | - set -ex cd ${WORK_DIR} + pwd git config --global --add safe.directory $(work_dir) export USER=azure pip install -r test/py/requirements.txt @@ -229,6 +229,7 @@ stages: echo "load-plugins=pylint.extensions.docparams" >> .pylintrc export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl + set -ex pylint --version export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt make pylint_err |