From 2dcd61d1e94969fc116d6a66ad2a59e1fab72d5e Mon Sep 17 00:00:00 2001 From: spinline Date: Fri, 30 Jan 2026 01:01:30 +0300 Subject: [PATCH] chore: Add debug listing for artifacts --- .github/workflows/build-mips.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build-mips.yml b/.github/workflows/build-mips.yml index 9903045..3a7f736 100644 --- a/.github/workflows/build-mips.yml +++ b/.github/workflows/build-mips.yml @@ -38,10 +38,17 @@ jobs: - name: Build Backend (MIPS) env: RUSTUP_TOOLCHAIN: nightly + CROSS_NO_WARNINGS: 0 run: | cd backend cross build --target mips-unknown-linux-musl --release -Z build-std=std,panic_abort + - name: Debug - List Files + run: | + echo "Listing target directory..." + find backend/target -maxdepth 5 || true + ls -R backend/target/mips-unknown-linux-musl/release || true + - name: Upload Binary uses: actions/upload-artifact@v4 with: