We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b665696 commit a15460cCopy full SHA for a15460c
1 file changed
.github/workflows/rpi_pico.yaml
@@ -30,8 +30,22 @@ jobs:
30
- uses: jwlawson/actions-setup-cmake@v1.13
31
- name: Install requirements
32
run: |
33
- sudo apt update
34
- sudo apt install -y cmake gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential g++ libstdc++-arm-none-eabi-newlib
+ sudo apt-get update \
+ -o Acquire::Retries=5 \
35
+ -o Acquire::http::Timeout=60 \
36
+ -o Acquire::https::Timeout=60
37
+
38
+ sudo apt-get install -y --no-install-recommends \
39
40
41
+ -o Acquire::https::Timeout=60 \
42
+ cmake \
43
+ gcc-arm-none-eabi \
44
+ libnewlib-arm-none-eabi \
45
+ build-essential \
46
+ g++ \
47
+ libstdc++-arm-none-eabi-newlib
48
+ timeout-minutes: 20
49
50
- name: Install Raspberry Pico SDK
51
0 commit comments