forked from msm8916-mainline/lk2nd
-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (34 loc) · 849 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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