From 9a2a002bde1a8fb49570fa04ddd10a4f6a23962e Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Tue, 27 Jan 2026 16:24:25 +0100 Subject: [PATCH] Github workflow --- .github/workflows/macos.yml | 6 +++--- internal_filesystem/lib/mpos/net/download_manager.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2fd5747f..0dbdf7e0 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 diff --git a/internal_filesystem/lib/mpos/net/download_manager.py b/internal_filesystem/lib/mpos/net/download_manager.py index 564efd5b..ca5e3b8f 100644 --- a/internal_filesystem/lib/mpos/net/download_manager.py +++ b/internal_filesystem/lib/mpos/net/download_manager.py @@ -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)