0711a9867725f007cf4872da4b46935a23b0ea46
[openwrt/openwrt.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 name: Build Packages with external toolchain
29 permissions:
30 contents: read
31 packages: read
32 strategy:
33 fail-fast: False
34 matrix:
35 include:
36 - target: malta/be
37 - target: x86/64
38 uses: ./.github/workflows/build.yml
39 with:
40 target: ${{ matrix.target }}
41 build_all_kmods: true
42 build_all_modules: true
43 build_full: true
44