Skip to content

kernel: move lcd regulator to common dts #142

kernel: move lcd regulator to common dts

kernel: move lcd regulator to common dts #142

Workflow file for this run

name: build kernel
concurrency:
group: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.run_id || github.head_ref || github.ref }}-${{ github.workflow }}-${{ github.event_name }}
cancel-in-progress: true
on:
push:
branches: [master]
paths:
- 'kernel/**'
- 'tools/build/build_kernel.sh'
- 'tools/build/Dockerfile.builder'
- '.github/workflows/build-kernel.yml'
pull_request:
paths:
- 'kernel/**'
- 'tools/build/build_kernel.sh'
- 'tools/build/Dockerfile.builder'
- '.github/workflows/build-kernel.yml'
jobs:
build:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- name: get kernel submodule ref
id: kernel-submodule
run: echo "ref=$(git ls-tree HEAD | awk '$4 == "kernel"' | awk '{print $3}')" | tee -a $GITHUB_OUTPUT
- name: restore ccache
uses: actions/cache@v4
with:
path: .ccache
key: ccache-kernel-${{ steps.kernel-submodule.outputs.ref }}-${{ github.run_id }}
restore-keys: |
ccache-kernel-${{ steps.kernel-submodule.outputs.ref }}-
ccache-kernel-
- name: build kernel
run: ./vamos build kernel
- name: upload boot.img
uses: actions/upload-artifact@v4
with:
name: boot.img
path: build/boot.img
if-no-files-found: error