We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 078f453 commit e0fdb88Copy full SHA for e0fdb88
actions_install.sh
@@ -3,8 +3,15 @@
3
set -e
4
5
pip3 install clint pyserial setuptools adafruit-nrfutil
6
-sudo apt-get update
7
-sudo apt-get install -y libllvm8 -V
+sudo gem install apt-spy2
+sudo apt-spy2 check
8
+sudo apt-spy2 fix --commit
9
+
10
+# after selecting a specific mirror, we need to run 'apt-get update'
11
+sudo apt-get -o Acquire::Retries=3 update
12
13
+sudo apt-get -o Acquire::Retries=3 install -y libllvm8 -V
14
15
sudo apt install -fy cppcheck clang-format-8
16
if [ ! -f /usr/bin/clang-format ]; then
17
sudo ln -s /usr/bin/clang-format-8 /usr/bin/clang-format
0 commit comments