File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 2929 fetch-depth : 1
3030 clean : false
3131
32- - name : Build kernel at ${{ github.event.pull_request.head.sha }}
33- id : kernel
32+ - name : Build arm64 kernel at ${{ github.event.pull_request.head.sha }}
33+ id : kernel-arm64
3434 run : |
3535
3636 rm -rf output/debs/*
4646 BRANCH=vendor \
4747 ENABLE_EXTENSIONS="pull-request"
4848
49+ - name : Build armhf kernel at ${{ github.event.pull_request.head.sha }}
50+ id : kernel-armhf
51+ run : |
52+
53+ rm -rf output/debs/*
54+ mkdir -p userpatches/extensions/
55+ cat <<- EOF > userpatches/extensions/pull-request.sh
56+ function post_family_config__force_commit_for_rk3588() {
57+ KERNELBRANCH="commit:${{ github.event.pull_request.head.sha }}"
58+ }
59+ EOF
60+ bash ./compile.sh kernel \
61+ SHARE_LOG=yes \
62+ BOARD=armsom-forge1 \
63+ BRANCH=vendor \
64+ ENABLE_EXTENSIONS="pull-request"
65+
4966 - name : Upload artifact
5067 uses : actions/upload-artifact@v4
5168 with :
You can’t perform that action at this time.
0 commit comments