From 606cba170577598d126575a4782182e7d8605b3a Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Fri, 10 Jan 2025 19:23:24 +0100 Subject: [PATCH 1/2] We were off by one on the number of workers --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68eefc7b9c2..4d2965b5e8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - id: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + id: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] steps: - uses: actions/checkout@v4 From e7afc5a52a12fce7f847bebd4c530819e2db48db Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Fri, 10 Jan 2025 19:26:08 +0100 Subject: [PATCH 2/2] Add missing on.workflow_call --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d2965b5e8f..c1a7e2c30b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,15 @@ on: - 'CMakeLists.txt' - '*.sh' + workflow_call: + #inputs: + # release_build: + # description: 'Specifies if it is a build that should include commit hash in hex file names or not' + # default: false + # required: false + # type: boolean + + jobs: build: runs-on: ubuntu-latest