File tree 2 files changed +5
-5
lines changed
.github/actions/pio-build
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
5
5
ENV LC_ALL C.UTF-8
6
6
7
7
# 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
9
9
10
10
# Install PlatformIO
11
- RUN pip3 install -U platformio
11
+ RUN pip3 install --quiet --upgrade platformio
12
12
CMD /bin/bash
13
13
14
14
# 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
2
2
3
3
CMSIS_VERSION=$1
4
4
CMSIS_ARCHIVE=CMSIS-${CMSIS_VERSION} .tar.bz2
@@ -11,8 +11,8 @@ python3 -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/pl
11
11
12
12
ln -sf $GITHUB_WORKSPACE $HOME /.platformio/packages/framework-arduinoststm32
13
13
# 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
16
16
cd $GITHUB_WORKSPACE /CI/build/
17
17
python3 platformio-builder.py --board=blackpill_f103c8 --board=remram_v1
18
18
You can’t perform that action at this time.
0 commit comments