Fix drm device probe ordering with strict fw_devlink #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Linux image | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- qcom-sdm660-6.*.y | |
tags: | |
- v*-sdm660 | |
jobs: | |
build-linux: | |
runs-on: [self-hosted, Linux, aarch64] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install deps | |
run: | | |
sudo apt install -yqq bison build-essential device-tree-compiler flex python3 | |
- name: Prepare build directory | |
run: | | |
mkdir build-660 | |
- name: Prepare config | |
run: | | |
make O=build-660 ARCH=arm64 defconfig sdm660_defconfig | |
- name: Compile kernel | |
run: | | |
make O=build-660 ARCH=arm64 -j$(nproc) |