Skip to content

Commit

Permalink
CI: remove pip progress bar to reduce logs size
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr authored and tridge committed Jan 9, 2023
1 parent c740cd8 commit a25e6bb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cygwin_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/esp32_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions Tools/scripts/configure-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a25e6bb

Please sign in to comment.