From 17831a4716e9a5cc48e55a41c5975900b3f98892 Mon Sep 17 00:00:00 2001 From: czjaso Date: Mon, 26 Jan 2026 11:55:59 -0800 Subject: [PATCH 1/2] Update manifest to list CMock as a test dependency. --- manifest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.yml b/manifest.yml index df365158..e1869f5f 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name: "coreHTTP" -version: "v3.1.1" +version: "v3.1.1+" description: "Client implementation of the HTTP/1.1 specification for embedded devices." license: "MIT" @@ -13,6 +13,7 @@ dependencies: url: "https://github.com/nodejs/llhttp.git" path: source/dependency/3rdparty/llhttp +testDependencies: - name: "CMock" version: "v2.5.3" license: "MIT" From 3493a3f3e2067b6fedb3bb1891d5baacf3516c89 Mon Sep 17 00:00:00 2001 From: czjaso Date: Mon, 26 Jan 2026 12:08:43 -0800 Subject: [PATCH 2/2] Fix manifest verification from checking for test dependency. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef4d6c49..55071b37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -169,6 +169,7 @@ jobs: with: path: ./ fail-on-incorrect-version: true + exclude-submodules: "test/unit-test/CMock" proof_ci: if: ${{ github.event.pull_request }}