8000
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.
2 parents 13eada2 + 5885e2f commit 894ddfbCopy full SHA for 894ddfb
.github/workflows/build-mpy-cross.yml
@@ -43,10 +43,14 @@ jobs:
43
44
- name: Install toolchain (aarch64)
45
if: matrix.mpy-cross == 'static-aarch64'
46
- run: sudo apt-get install -y gcc-aarch64-linux-gnu
+ run: |
47
+ sudo apt-get update
48
+ sudo apt-get install -y gcc-aarch64-linux-gnu
49
- name: Install toolchain (mingw)
50
if: matrix.mpy-cross == 'static-mingw'
- run: sudo apt-get install -y mingw-w64
51
52
53
+ sudo apt-get install -y mingw-w64
54
55
- name: Build mpy-cross.${{ matrix.mpy-cross }}
56
run: make -C mpy-cross -j2 -f Makefile.${{ matrix.mpy-cross }}
0 commit comments