@@ -154,7 +154,8 @@ jobs:
154
154
mod : 42 # Picked at random to give 4-5 builds and exit.
155
155
rem : 13
156
156
run : |
157
- sudo apt-get install python3-pip python3-setuptools
157
+ sudo apt update
158
+ sudo apt install python3-pip python3-setuptools
158
159
PATH=/home/runner/.local/bin:$PATH bash ./tests/platformio.sh
159
160
160
161
@@ -174,7 +175,8 @@ jobs:
174
175
TRAVIS_BUILD_DIR : ${{ github.workspace }}
175
176
TRAVIS_TAG : ${{ github.ref }}
176
177
run : |
177
- sudo apt-get install valgrind lcov
178
+ sudo apt update
179
+ sudo apt install valgrind lcov
178
180
bash ./tests/ci/host_test.sh
179
181
180
182
@@ -194,7 +196,8 @@ jobs:
194
196
TRAVIS_BUILD_DIR : ${{ github.workspace }}
195
197
TRAVIS_TAG : ${{ github.ref }}
196
198
run : |
197
- sudo apt-get install python3-pip python3-setuptools
199
+ sudo apt update
200
+ sudo apt install python3-pip python3-setuptools
198
201
# GitHub CI installs pip3 and setuptools outside the path.
199
202
# Update the path to include them and run.
200
203
PATH=/home/runner/.local/bin:$PATH pip3 install --user -r doc/requirements.txt
@@ -217,7 +220,8 @@ jobs:
217
220
TRAVIS_BUILD_DIR : ${{ github.workspace }}
218
221
TRAVIS_TAG : ${{ github.ref }}
219
222
run : |
220
- sudo apt-get install astyle
223
+ sudo apt update
224
+ sudo apt install astyle
221
225
bash ./tests/ci/style_check.sh
222
226
223
227
0 commit comments