|
@@ -14,6 +14,8 @@ on:
|
|
|
type: boolean
|
|
type: boolean
|
|
|
build_full:
|
|
build_full:
|
|
|
type: boolean
|
|
type: boolean
|
|
|
|
|
+ build_kernel:
|
|
|
|
|
+ type: boolean
|
|
|
build_all_modules:
|
|
build_all_modules:
|
|
|
type: boolean
|
|
type: boolean
|
|
|
build_all_kmods:
|
|
build_all_kmods:
|
|
@@ -338,11 +340,13 @@ jobs:
|
|
|
run: make toolchain/install -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
|
run: make toolchain/install -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
|
|
|
|
|
|
|
- name: Build Kernel
|
|
- name: Build Kernel
|
|
|
|
|
+ if: inputs.build_kernel == true
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
working-directory: openwrt
|
|
working-directory: openwrt
|
|
|
run: make target/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
|
run: make target/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
|
|
|
|
|
|
|
- name: Build Kernel Kmods
|
|
- name: Build Kernel Kmods
|
|
|
|
|
+ if: inputs.build_kernel == true
|
|
|
shell: su buildbot -c "sh -e {0}"
|
|
shell: su buildbot -c "sh -e {0}"
|
|
|
working-directory: openwrt
|
|
working-directory: openwrt
|
|
|
run: make package/linux/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|
|
run: make package/linux/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
|