Skip to content

Commit

Permalink
ci: add workflow for nx729j(redmagic 8 pro).
Browse files Browse the repository at this point in the history
  • Loading branch information
sunflower2333 committed Dec 21, 2024
1 parent bb04661 commit 236c205
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/sm8550_nubia_rm_8_pro.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This is a basic workflow to help you get started with Actions

name: SM8550 Nubia RedMagic 8 Pro

# Controls when the workflow will run
on:
# # Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
paths:
- 'Platforms/KailuaPkg/Device/nubia-nx729j/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Indicate that we are running in CI
env:
WM_CI_BUILD: true

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Build SB/NOSB uefi for nubia redmagic 8 pro.
run: bash scripts/ci_setup.sh && ./build_uefi.py -d nubia-nx729j

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: uefi-images-nx729j
path: Build/*/ci_artifacts
compression-level: 9

0 comments on commit 236c205

Please sign in to comment.