File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,16 +45,16 @@ jobs:
45
45
run : sudo apt-get install patchelf
46
46
47
47
- name : Fix interpreter
48
- run : patchelf --set-interpreter /lib/ld-linux-armhf.so.3 ports/unix/build-coverage /micropython
48
+ run : patchelf --set-interpreter /lib/ld-linux-armhf.so.3 ports/unix/build-standard /micropython
49
49
50
50
- name : Fix needed libs
51
- run : patchelf --replace-needed ld-linux.so.3 ld-linux-armhf.so.3 ports/unix/build-coverage /micropython
51
+ run : patchelf --replace-needed ld-linux.so.3 ld-linux-armhf.so.3 ports/unix/build-standard /micropython
52
52
53
53
- name : Upload binaries to release
54
54
uses : svenstaro/upload-release-action@v2
55
55
with :
56
56
repo_token : ${{ secrets.GITHUB_TOKEN }}
57
- file : ports/unix/build-coverage /micropython
57
+ file : ports/unix/build-standard /micropython
58
58
asset_name : micropython.rm520
59
59
tag : ${{ github.ref }}
60
60
overwrite : true
Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ CI_UNIX_OPTS_QEMU_MIPS=(
388
388
389
389
CI_UNIX_OPTS_QEMU_ARM=(
390
390
CROSS_COMPILE=arm-linux-gnueabi-
391
- VARIANT=coverage
391
+ VARIANT=standard
392
392
MICROPY_STANDALONE=1
393
393
)
394
394
You can’t perform that action at this time.
0 commit comments