From 6a9a3b35ed66e1fd1d7f2f2e6c98e68bdf3826e5 Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Thu, 12 Feb 2026 17:23:03 -0800 Subject: [PATCH] Fixed CI runner failure when executing tests --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa78b8d..b1af5b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -130,8 +130,12 @@ jobs: - name: Install packaging tools run: cargo install cargo-deb cargo-generate-rpm - - name: Build and Run Tests (Makefile linux-arm64) - run: make linux-arm64 + - name: Build (Makefile linux-arm64) + run: make ubuntu-arm64 + - name: Run tests + run: make tests + env: + CARGO_BUILD_JOBS: 1 - name: Fix permissions run: sudo chown -R $(id -u):$(id -g) target .cargo-home || true