Skip to content

Commit bd032d5

Browse files
amazingfateigorpecovnik
authored andcommitted
workflow: enable armhf kernel build
1 parent d31b0fe commit bd032d5

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

.github/workflows/compile.yaml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
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/*
@@ -46,6 +46,23 @@ jobs:
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:

0 commit comments

Comments
 (0)