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 8e33386 commit e3ee63fCopy full SHA for e3ee63f
.github/workflows/micropython.yml
@@ -121,10 +121,11 @@ jobs:
121
run: |
122
git apply "${{env.BOARD_DIR}}/wakeup_gpio.patch"
123
124
- # Install apt packages via cache
125
- - uses: awalsh128/cache-apt-pkgs-action@latest
126
- with:
127
- packages: ccache gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi libnewlib-dev libstdc++-arm-none-eabi-newlib
+ # Install apt packages
+ - name: Install CCache & Compiler
+ shell: bash
+ run:
128
+ sudo apt update && sudo apt install ccache gcc-arm-none-eabi
129
130
# Build firmware
131
- name: Configure MicroPython
0 commit comments