From e2b8f6acfbacf9780058dfd201463ddfad43f473 Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Sun, 16 Aug 2020 11:41:42 -0700 Subject: [PATCH] Update PIO CI to be less chatty, fix CI fail (#7530) Remove get.py percent dump to shorten PIO output 99%. Use latest release version of PIO, not bleeding edge, to fix failures introduced in devel (non-release) PIO versions. Thanks, @mcspr, for noticing this! --- tests/platformio.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/platformio.sh b/tests/platformio.sh index 7e834fb6d..2aa81a656 100755 --- a/tests/platformio.sh +++ b/tests/platformio.sh @@ -6,10 +6,10 @@ source "$TRAVIS_BUILD_DIR"/tests/common.sh function install_platformio() { - pip3 install --user -U https://github.com/platformio/platformio/archive/develop.zip + pip3 install -U platformio platformio platform install "https://github.com/platformio/platform-espressif8266.git" # Overwrite toolchain with this PR's toolset. Probably better way to do this - ( cd $TRAVIS_BUILD_DIR/tools && python3 get.py ) + ( cd $TRAVIS_BUILD_DIR/tools && python3 get.py -q ) mv ~/.platformio/packages/toolchain-xtensa/package.json .save rm -rf ~/.platformio/packages/toolchain-xtensa mv $TRAVIS_BUILD_DIR/tools/xtensa-lx106-elf ~/.platformio/packages/toolchain-xtensa