Skip to content

Commit 6738ced

Browse files
committed
automation: build python targets in pipeline ci-cd
done using a 2d matrix involving the build type (regular or with python)
1 parent 5359ff1 commit 6738ced

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pr-pipeline.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
build:
1010
strategy:
1111
matrix:
12+
build_type: ["build", "build-with-python"]
1213
architecture: ["x86_64", "arm", "aarch64", "powerpc", "mips", "mipsel"]
1314

1415
runs-on: ubuntu-latest
@@ -21,4 +22,4 @@ jobs:
2122
run: sudo apt-get install -y wget
2223

2324
- name: Build
24-
run: make build-${{ matrix.architecture }} -j$((`nproc`+1))
25+
run: make ${{ matrix.build_type }}-${{ matrix.architecture }} -j$((`nproc`+1))

0 commit comments

Comments
 (0)