From 4c741a8b05786f726e95b8504508a74f09a3c04d Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Tue, 24 Mar 2026 19:24:52 +0100 Subject: [PATCH] Copy artifact, even if unit tests fail --- .github/workflows/macos-intel.yml | 2 +- .github/workflows/macos.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos-intel.yml b/.github/workflows/macos-intel.yml index fdef4483..1d2b3c79 100644 --- a/.github/workflows/macos-intel.yml +++ b/.github/workflows/macos-intel.yml @@ -39,6 +39,7 @@ jobs: - name: Build LVGL MicroPython for macOS dev run: | ./scripts/build_mpos.sh macOS + cp lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_intel_macOS_${{ steps.version.outputs.OS_VERSION }}.bin - name: Run syntax tests on macOS run: | @@ -48,7 +49,6 @@ jobs: - name: Run unit tests on macOS run: | ./tests/unittest.sh - mv lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_intel_macOS_${{ steps.version.outputs.OS_VERSION }}.bin continue-on-error: true - name: Upload built binary as artifact diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2173be5e..cae6ff92 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -39,6 +39,7 @@ jobs: - name: Build LVGL MicroPython for macOS dev run: | ./scripts/build_mpos.sh macOS + cp lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_arm64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin - name: Run syntax tests on macOS run: | @@ -48,7 +49,6 @@ jobs: - name: Run unit tests on macOS run: | ./tests/unittest.sh - mv lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_arm64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin continue-on-error: true - name: Upload built binary as artifact