dts: msm8909: lenovo-lxf-p5100: fixes #556
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 | |
on: [push, pull_request] | |
jobs: | |
# Build lk2nd-msm8916 separately first to avoid booting lots of runners | |
# for obvious build errors that affect all platforms | |
lk2nd-msm8916: | |
name: lk2nd | |
uses: ./.github/workflows/lk2nd.yml | |
with: | |
project: lk2nd | |
platform: msm8916 | |
artifacts: | | |
build-*/lk.bin | |
build-*/lk2nd.img | |
lk2nd: | |
needs: lk2nd-msm8916 | |
uses: ./.github/workflows/lk2nd-matrix.yml | |
with: | |
project: lk2nd | |
exclude: msm8916 # Already built separately above | |
artifacts: | | |
build-*/lk.bin | |
build-*/lk2nd.img | |
lk1st: | |
needs: lk2nd | |
uses: ./.github/workflows/lk2nd-matrix.yml | |
with: | |
project: lk1st | |
artifacts: | | |
build-*/*.mbn | |
build-*/lk.bin | |
stock: | |
needs: lk1st | |
uses: ./.github/workflows/stock-matrix.yml |