File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
.github/actions/pio-build Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ ENV LANG C.UTF-8
55ENV LC_ALL C.UTF-8
66
77# Install prerequisites
8- RUN apt-get update && apt-get install -y git python3 python3-pip wget
8+ RUN apt-get --quiet=2 update && apt-get install --quiet=2 -y git python3 python3-pip wget
99
1010# Install PlatformIO
11- RUN pip3 install -U platformio
11+ RUN pip3 install --quiet --upgrade platformio
1212CMD /bin/bash
1313
1414# Copies your code file from your action repository to the filesystem path `/` of the container
Original file line number Diff line number Diff line change 1- #! /bin/bash -x
1+ #! /bin/bash
22
33CMSIS_VERSION=$1
44CMSIS_ARCHIVE=CMSIS-${CMSIS_VERSION} .tar.bz2
@@ -11,8 +11,8 @@ python3 -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/pl
1111
1212ln -sf $GITHUB_WORKSPACE $HOME /.platformio/packages/framework-arduinoststm32
1313# Download and unpack CMSIS package
14- wget https://github.com/stm32duino/ArduinoModule-CMSIS/releases/download/$CMSIS_VERSION /CMSIS-$CMSIS_VERSION .tar.bz2
15- tar -xvjf CMSIS-$CMSIS_VERSION .tar.bz2
14+ wget --no-verbose https://github.com/stm32duino/ArduinoModule-CMSIS/releases/download/$CMSIS_VERSION /CMSIS-$CMSIS_VERSION .tar.bz2
15+ tar -xjf CMSIS-$CMSIS_VERSION .tar.bz2
1616cd $GITHUB_WORKSPACE /CI/build/
1717python3 platformio-builder.py --board=blackpill_f103c8 --board=remram_v1
1818
You can’t perform that action at this time.
0 commit comments