forked from msm8916-mainline/lk2nd
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 808 Bytes
/
Copy pathlk2nd-matrix.yml
File metadata and controls
41 lines (39 loc) · 808 Bytes
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
38
39
40
41
name: Build lk2nd matrix
on:
workflow_call:
inputs:
project:
type: string
required: true
artifacts:
type: string
required: true
exclude:
type: string
jobs:
build:
strategy:
fail-fast: false
matrix:
platform:
- apq8084
- mdm9607
- mdm9640
- msm8226
- msm8610
- msm8660
- msm8909
- msm8916
- msm8952
- msm8953
- msm8960
- msm8974
- msm8994
- msm8996
exclude:
- platform: ${{ inputs.exclude }}
uses: ./.github/workflows/lk2nd.yml
with:
project: ${{ inputs.project }}
platform: ${{ matrix.platform }}
artifacts: ${{ inputs.artifacts }}