Github workflow

This commit is contained in:
Thomas Farstrike
2026-01-27 16:24:25 +01:00
parent 49f01d7632
commit 9a2a002bde
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -48,14 +48,14 @@ jobs:
- name: Run unit tests on macOS
run: |
./tests/unittest.sh
mv lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
mv lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_amd64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
continue-on-error: true
- name: Upload built binary as artifact
uses: actions/upload-artifact@v4
with:
name: MicroPythonOS_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
path: lvgl_micropython/build/MicroPythonOS_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
name: MicroPythonOS_amd64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
path: lvgl_micropython/build/MicroPythonOS_amd64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
compression-level: 0 # don't zip it
retention-days: 7
@@ -1,7 +1,7 @@
"""
download_manager.py - HTTP download service for MicroPythonOS
Provides async HTTP downloads with flexible output modes:
Provides synchronous and asynchronous HTTP downloads with flexible output modes:
- Download to memory (returns bytes)
- Download to file (returns bool)
- Streaming with chunk callback (returns bool)