diff --git a/.github/workflows/cygwin_build.yml b/.github/workflows/cygwin_build.yml index 0d601df2fa931..9e502bf105411 100644 --- a/.github/workflows/cygwin_build.yml +++ b/.github/workflows/cygwin_build.yml @@ -21,8 +21,8 @@ jobs: HOME: ${{ runner.workspace }}/ardupilot run: | bash --login -c "ln -sf /usr/bin/python3.7 /usr/bin/python && ln -sf /usr/bin/pip3.7 /usr/bin/pip" - bash --login -c "python -m pip install empy pexpect" - bash --login -c "python -m pip install dronecan --upgrade" + bash --login -c "python -m pip install --progress-bar off empy pexpect" + bash --login -c "python -m pip install --progress-bar off dronecan --upgrade" - name: Build SITL env: HOME: ${{ runner.workspace }}/ardupilot diff --git a/.github/workflows/esp32_build.yml b/.github/workflows/esp32_build.yml index 20f23bee09589..f7404d656b461 100644 --- a/.github/workflows/esp32_build.yml +++ b/.github/workflows/esp32_build.yml @@ -62,7 +62,7 @@ jobs: ./install.sh source ./export.sh cd ../.. - python -m pip install future lxml pymavlink MAVProxy pexpect flake8 geocoder empy dronecan + python -m pip install --progress-bar off future lxml pymavlink MAVProxy pexpect flake8 geocoder empy dronecan which cmake ./waf configure --board ${{matrix.config}} ./waf plane diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index b700fa830e336..8f072f13e8f8d 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -64,10 +64,10 @@ jobs: shell: 'script -q -e -c "bash {0}"' run: | PATH="/github/home/.local/bin:$PATH" - python -m pip install --user mavproxy + python -m pip install --progress-bar off --user mavproxy python -m pip uninstall -y pymavlink git submodule update --init --recursive - (cd modules/mavlink/pymavlink && DISABLE_MAVNATIVE=True MDEF="$PWD/../message_definitions" python -m pip install --user .) + (cd modules/mavlink/pymavlink && DISABLE_MAVNATIVE=True MDEF="$PWD/../message_definitions" python -m pip install --progress-bar off --user .) if [[ ${{ matrix.config }} == "coverage" ]]; then Tools/scripts/run_coverage.py -f else diff --git a/Tools/scripts/configure-ci.sh b/Tools/scripts/configure-ci.sh index 9ec4f55ad0a28..e7a4c6a60dd80 100755 --- a/Tools/scripts/configure-ci.sh +++ b/Tools/scripts/configure-ci.sh @@ -97,9 +97,9 @@ fi . ~/.profile -python -m pip install --user -U argparse pyserial pexpect future lxml -python -m pip install --user -U intelhex -python -m pip install --user -U numpy -python -m pip install --user -U edn_format -python -m pip install --user -U empy +python -m pip install --progress-bar off --user -U argparse pyserial pexpect future lxml +python -m pip install --progress-bar off --user -U intelhex +python -m pip install --progress-bar off --user -U numpy +python -m pip install --progress-bar off --user -U edn_format +python -m pip install --progress-bar off --user -U empy