Skip to content

Commit 399f2fa

Browse files
committed
[CI] Reduce unnecessary output from action
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 9f1227f commit 399f2fa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/actions/pio-build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ ENV LANG C.UTF-8
55
ENV 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
1212
CMD /bin/bash
1313

1414
# Copies your code file from your action repository to the filesystem path `/` of the container

.github/actions/pio-build/entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22

33
CMSIS_VERSION=$1
44
CMSIS_ARCHIVE=CMSIS-${CMSIS_VERSION}.tar.bz2
@@ -11,8 +11,8 @@ python3 -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/pl
1111

1212
ln -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
1616
cd $GITHUB_WORKSPACE/CI/build/
1717
python3 platformio-builder.py --board=blackpill_f103c8 --board=remram_v1
1818

0 commit comments

Comments
 (0)