Update lk2nd.yml #29
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: lk2nd | |
on: [push, pull_request] | |
jobs: | |
lk2nd-msm8916: | |
uses: ./.github/workflows/build.yml | |
with: | |
project: lk2nd-msm8916 | |
lk2nd: | |
needs: lk2nd-msm8916 | |
strategy: | |
matrix: | |
project: [lk2nd-msm8226, lk2nd-msm8974] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Build lk2nd | |
run: | | |
# Coloca aquí los comandos de construcción específicos para lk2nd | |
echo "Building lk2nd" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@master | |
with: | |
project: ${{ matrix.project }} | |
name: bootimg | |
path: build-lk2nd-msm8916/* | |
lk1st: | |
needs: lk2nd-msm8916 | |
strategy: | |
matrix: | |
project: [lk1st-msm8916] | |
uses: ./.github/workflows/build.yml | |
with: | |
project: ${{ matrix.project }} | |
lk1st-msm8916-db410c: | |
needs: lk2nd-msm8916 | |
uses: ./.github/workflows/build.yml | |
with: | |
project: lk1st-msm8916 | |
vars: FORCE_SDCARD=1 LK1ST_DTB=apq8016-sbc LK1ST_PANEL=adv7533_1080p_video | |
caf: | |
needs: lk2nd-msm8916 | |
strategy: | |
matrix: | |
project: [msm8916, msm8974, msm8226] | |
uses: ./.github/workflows/build.yml | |
with: | |
project: ${{ matrix.project }} | |