meditek: add support for RouteRich AX3000 - MediaTek MT7981 RFB #259
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build all core packages | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/build.yml' | |
- '.github/workflows/packages.yml' | |
- 'config/**' | |
- 'include/**' | |
- 'package/**' | |
- 'target/linux/generic/**' | |
- 'toolchain/**' | |
push: | |
paths: | |
- '.github/workflows/build.yml' | |
- '.github/workflows/packages.yml' | |
- 'config/**' | |
- 'include/**' | |
- 'package/**' | |
- 'target/linux/generic/**' | |
- 'toolchain/**' | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
build: | |
name: Build Packages with external toolchain | |
permissions: | |
contents: read | |
packages: read | |
strategy: | |
fail-fast: False | |
matrix: | |
include: | |
- target: malta | |
subtarget: be | |
- target: x86 | |
subtarget: 64 | |
uses: ./.github/workflows/build.yml | |
with: | |
target: ${{ matrix.target }} | |
subtarget: ${{ matrix.subtarget }} | |
build_kernel: true | |
build_all_kmods: true | |
build_all_modules: true | |
build_full: true | |