Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions .github/workflows/compile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
fetch-depth: 1
clean: false

- name: Build kernel at ${{ github.event.pull_request.head.sha }}
id: kernel
- name: Build arm64 kernel at ${{ github.event.pull_request.head.sha }}
id: kernel-arm64
run: |

rm -rf output/debs/*
Expand All @@ -46,6 +46,23 @@ jobs:
BRANCH=vendor \
ENABLE_EXTENSIONS="pull-request"

- name: Build armhf kernel at ${{ github.event.pull_request.head.sha }}
id: kernel-armhf
run: |

rm -rf output/debs/*
mkdir -p userpatches/extensions/
cat <<- EOF > userpatches/extensions/pull-request.sh
function post_family_config__force_commit_for_rk3588() {
KERNELBRANCH="commit:${{ github.event.pull_request.head.sha }}"
}
EOF
bash ./compile.sh kernel \
SHARE_LOG=yes \
BOARD=armsom-forge1 \
BRANCH=vendor \
ENABLE_EXTENSIONS="pull-request"

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down
Loading