Skip to content

Commit ee5a7c0

Browse files
Build with SDL_LOADSO=OFF
1 parent 5dcea9c commit ee5a7c0

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/linux.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,14 @@ jobs:
7070
- name: Build LVGL MicroPython for unix
7171
run: |
7272
./scripts/build_mpos.sh unix
73+
mv lvgl_micropython/build/lvgl_micropy_unix lvgl_micropython/build/MicroPythonOS_amd64_linux_${{ steps.version.outputs.OS_VERSION }}.elf
74+
75+
- name: Upload built binary as artifact
76+
uses: actions/upload-artifact@v4
77+
with:
78+
name: MicroPythonOS_amd64_linux_${{ steps.version.outputs.OS_VERSION }}.elf
79+
path: lvgl_micropython/build/MicroPythonOS_amd64_linux_${{ steps.version.outputs.OS_VERSION }}.elf
80+
retention-days: 7
7381

7482
- name: Run syntax tests on unix
7583
run: |
@@ -79,16 +87,8 @@ jobs:
7987
- name: Run unit tests on unix
8088
run: |
8189
./tests/unittest.sh
82-
mv lvgl_micropython/build/lvgl_micropy_unix lvgl_micropython/build/MicroPythonOS_amd64_linux_${{ steps.version.outputs.OS_VERSION }}.elf
8390
continue-on-error: true
8491

85-
- name: Upload built binary as artifact
86-
uses: actions/upload-artifact@v4
87-
with:
88-
name: MicroPythonOS_amd64_linux_${{ steps.version.outputs.OS_VERSION }}.elf
89-
path: lvgl_micropython/build/MicroPythonOS_amd64_linux_${{ steps.version.outputs.OS_VERSION }}.elf
90-
retention-days: 7
91-
9292
- name: Build LVGL MicroPython esp32
9393
run: |
9494
./scripts/build_mpos.sh esp32

scripts/build_mpos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ PY
202202
STRIP= \
203203
DISPLAY=sdl_display \
204204
INDEV=sdl_pointer \
205-
SDL_FLAGS="-DSDL_OPENGL=OFF -DSDL_OPENGLES=OFF -DSDL_VULKAN=OFF -DSDL_KMSDRM=OFF -DSDL_IBUS=OFF -DSDL_DBUS=OFF" \
205+
SDL_FLAGS="-DSDL_OPENGL=OFF -DSDL_OPENGLES=OFF -DSDL_VULKAN=OFF -DSDL_KMSDRM=OFF -DSDL_IBUS=OFF -DSDL_DBUS=OFF SDL_LOADSO=OFF" \
206206
"$frozenmanifest"
207207

208208
popd

0 commit comments

Comments
 (0)