From 614fa90a202d17b4dbcdce730a97741271c97eac Mon Sep 17 00:00:00 2001 From: Matthew Watkins Date: Wed, 4 Mar 2026 11:02:59 +0000 Subject: [PATCH] Fix: Set correct make targets for multi-arch tests Default make target was 'help', not 'deps-nss'. The NSS/NSPR dependencies were never installed before the Python build ran. Co-Authored-By: Claude Signed-off-by: Matthew Watkins --- .github/workflows/testing.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 867aad0..64f8111 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -164,6 +164,7 @@ jobs: auditwheel: true manylinux_version: manylinux_2_34 build_formats: wheel - # Both projects in MULTI_ARCH_TEST_PROJECTS have Makefiles + # Projects in MULTI_ARCH_TEST_PROJECTS must provide + # deps-nss and env-github-actions Makefile targets. make: true - make_args: "-j$(nproc)" + make_args: "deps-nss env-github-actions"