94982ba65bf03f20eed644913c1544e15de8d9cb
[openwrt/staging/stintel.git] / .github / workflows / packages.yml
1 name: Build all core packages
2
3 on:
4 pull_request:
5 paths:
6 - '.github/workflows/build.yml'
7 - '.github/workflows/packages.yml'
8 - 'config/**'
9 - 'include/**'
10 - 'package/**'
11 - 'target/linux/generic/**'
12 - 'toolchain/**'
13 push:
14 paths:
15 - '.github/workflows/build.yml'
16 - '.github/workflows/packages.yml'
17 - 'config/**'
18 - 'include/**'
19 - 'package/**'
20 - 'target/linux/generic/**'
21 - 'toolchain/**'
22
23 permissions:
24 contents: read
25
26 jobs:
27 build:
28 permissions:
29 contents: read
30 packages: read
31 strategy:
32 fail-fast: False
33 matrix:
34 include:
35 - target: malta/be
36 - target: x86/64
37 uses: ./.github/workflows/build.yml
38 with:
39 target: ${{ matrix.target }}
40 build_all_kmods: true
41 build_all_modules: true
42 build_full: true
43