CI: remove pip progress bar to reduce logs size

This commit is contained in:
Pierre Kancir 2023-01-09 12:17:13 +01:00 committed by Andrew Tridgell
parent c740cd865a
commit a25e6bbb2d
4 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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