Skip to content

Commit 236c205

Browse files
committed
ci: add workflow for nx729j(redmagic 8 pro).
1 parent bb04661 commit 236c205

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: SM8550 Nubia RedMagic 8 Pro
4+
5+
# Controls when the workflow will run
6+
on:
7+
# # Triggers the workflow on push or pull request events but only for the "main" branch
8+
push:
9+
branches: [ "main" ]
10+
paths:
11+
- 'Platforms/KailuaPkg/Device/nubia-nx729j/**'
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
14+
15+
# Indicate that we are running in CI
16+
env:
17+
WM_CI_BUILD: true
18+
19+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
20+
jobs:
21+
# This workflow contains a single job called "build"
22+
build:
23+
# The type of runner that the job will run on
24+
runs-on: ubuntu-22.04
25+
26+
# Steps represent a sequence of tasks that will be executed as part of the job
27+
steps:
28+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29+
- uses: actions/checkout@v4
30+
- name: Build SB/NOSB uefi for nubia redmagic 8 pro.
31+
run: bash scripts/ci_setup.sh && ./build_uefi.py -d nubia-nx729j
32+
33+
- name: Upload Artifact
34+
uses: actions/upload-artifact@v4
35+
with:
36+
name: uefi-images-nx729j
37+
path: Build/*/ci_artifacts
38+
compression-level: 9

0 commit comments

Comments
 (0)