X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fbuild.yml;h=42db3669acee1927d5343c45d2209f73a30f3517;hb=dcdb0b064a5165ef1958a121228da2e02df3e576;hp=783943badd996d60e505d577175e345b562a8402;hpb=819b676af05f74dc2a1e432c3972bae63d7c4495;p=openwrt%2Fstaging%2Fjow.git diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 783943badd..42db3669ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,6 +14,8 @@ on: type: boolean build_full: type: boolean + build_kernel: + type: boolean build_all_modules: type: boolean 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 - name: Build Kernel + if: inputs.build_kernel == true shell: su buildbot -c "sh -e {0}" working-directory: openwrt run: make target/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh - name: Build Kernel Kmods + if: inputs.build_kernel == true shell: su buildbot -c "sh -e {0}" working-directory: openwrt run: make package/linux/compile -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh