File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- uses : actions/checkout@v1
12
+ - uses : actions/setup-python@v1
13
+ with :
14
+ python-version : ' 3.x' # Version range or exact version of a Python version to use, using semvers version range syntax.
15
+ architecture : ' x64' # optional x64 or x86. Defaults to x64 if not specified
12
16
- name : pre-install
13
17
run : |
14
18
source install.sh
Original file line number Diff line number Diff line change @@ -138,8 +138,6 @@ if [[ $INSTALL_NRF52 == 1 ]]; then
138
138
pip3 install --user setuptools
139
139
pip3 install --user adafruit-nrfutil
140
140
pip3 install --user pyserial
141
- pip install --user setuptools
142
- pip install --user pyserial
143
141
DEPENDENCY_OUTPUT=$( arduino --install-boards adafruit:nrf52 2>&1 )
144
142
if [ $? -ne 0 ]; then echo -e " \xe2\x9c\x96 OR CACHED" ; else echo -e " " " $GREEN " " \xe2\x9c\x93" ; fi
145
143
fi
You can’t perform that action at this time.
0 commit comments