From 6738cedefce0ccef187c0211aca4728656310170 Mon Sep 17 00:00:00 2001 From: Guy Shimko Date: Fri, 27 Dec 2024 21:36:43 +0200 Subject: [PATCH] automation: build python targets in pipeline ci-cd done using a 2d matrix involving the build type (regular or with python) --- .github/workflows/pr-pipeline.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-pipeline.yaml b/.github/workflows/pr-pipeline.yaml index a137131..44bdf61 100644 --- a/.github/workflows/pr-pipeline.yaml +++ b/.github/workflows/pr-pipeline.yaml @@ -9,6 +9,7 @@ jobs: build: strategy: matrix: + build_type: ["build", "build-with-python"] architecture: ["x86_64", "arm", "aarch64", "powerpc", "mips", "mipsel"] runs-on: ubuntu-latest @@ -21,4 +22,4 @@ jobs: run: sudo apt-get install -y wget - name: Build - run: make build-${{ matrix.architecture }} -j$((`nproc`+1)) + run: make ${{ matrix.build_type }}-${{ matrix.architecture }} -j$((`nproc`+1))