workflows: Add UniversalPayload in to git work flow

Add UPL fit binary build
Add UPL elf binary build

Signed-off-by: Gua Guo <gua.guo@intel.com>
This commit is contained in:
Gua Guo 2025-03-09 01:23:33 +08:00
parent 988ea5f571
commit 2b6f979744
2 changed files with 174 additions and 0 deletions

113
.github/workflows/BuildPlatform.yml vendored Normal file
View File

@ -0,0 +1,113 @@
# @file BuildPlatform.yml
#
# A reusable workflow that builds an EDKII platform and uploads it's artifacts.
#
##
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
name: Build Platform
on:
workflow_call:
inputs:
python-version:
required: true
description: 'The version of Python to use for the job'
type: string
default: '3.12'
runs-on:
required: true
description: 'The runner type to use for the job'
type: string
default: 'ubuntu-latest'
build-file:
required: true
description: 'The path to the stuart build script'
type: string
tool-chain:
required: true
description: 'The tool chain to use for the build'
type: string
target:
required: true
description: 'The target to build'
type: string
extra-build-args:
required: false
description: 'Extra arguments to pass to the build script'
type: string
default: ''
extra-pip-requirements:
required: false
description: 'Extra pip requirements to install'
type: string
default: ''
extra-setup-cmd:
required: false
description: 'Extra setup commands to run'
type: string
default: ''
extra-artifact-path:
required: false
description: 'Extra artifact paths to upload'
type: string
default: ''
jobs:
build:
name: Build Platform
runs-on: ${{ inputs.runs-on }}
container:
image: ${{ startswith(inputs.runs-on, 'ubuntu') && 'ghcr.io/tianocore/containers/fedora-40-dev:latest' || '' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- run: |
git config --global --add safe.directory '*'
name: 'Set Safe Directory'
if: ${{ startsWith(inputs.runs-on, 'ubuntu') }}
- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ inputs.python-version }}
if: ${{ !startsWith(inputs.runs-on, 'ubuntu') }}
- run: |
pip install --upgrade ${{ inputs.extra-pip-requirements }} -r pip-requirements.txt
name: 'Install/Upgrade pip modules'
- run: ${{ inputs.extra-setup-cmd }}
name: 'Extra Setup Commands'
if: ${{ inputs.extra-setup-cmd != '' }}
- run: |
stuart_setup -c ${{ inputs.build-file }}
name: 'Clone Submodules'
- run: |
stuart_update -c ${{ inputs.build-file }}
name: 'Download External Dependencies'
- run: |
python BaseTools/Edk2ToolsBuild.py -t ${{ inputs.tool-chain }}
name: 'Build BaseTools'
- run: |
stuart_build -c ${{ inputs.build-file }} TARGET=${{ inputs.target}} TOOL_CHAIN_TAG=${{ inputs.tool-chain }} ${{ inputs.extra-build-args }}
name: 'Build Platform'
- name: Upload Platform Build Logs
uses: actions/upload-artifact@v4
with:
name: Platform Build Logs ${{ inputs.tool-chain }} ${{ inputs.target }} ${{ inputs.extra-build-args }}
path: |
Build/*.txt
BaseTools/BaseToolsBuild/*
${{ inputs.extra-artifact-path }}
if: always()

61
.github/workflows/upl-build.yml vendored Normal file
View File

@ -0,0 +1,61 @@
# @file up-build.yml
#
# A workflow that builds UefiPayloadPackage's UPL and upload it's artifacts.
#
##
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
name: UPL Build
on:
workflow_dispatch:
push:
branches: ['master']
jobs:
build_vs2022:
strategy:
matrix:
os: [windows-latest]
python-version: ['3.12']
tool-chain: ['VS2022']
target: ['DEBUG']
extra-build-args: ['FIT_BUILD=TRUE', 'FIT_BUILD=FALSE']
name: Build UPL VS2022
uses: ./.github/workflows/BuildPlatform.yml
with:
runs-on: ${{ matrix.os }}
build-file: 'UefiPayloadPkg/PlatformCI/PlatformBuild.py'
python-version: ${{ matrix.python-version }}
tool-chain: ${{ matrix.tool-chain }}
target: ${{ matrix.target }}
extra-build-args: ${{ matrix.extra-build-args }}
extra-pip-requirements: 'pefile pylibfdt'
extra-artifact-path: |
Build/**/*.elf
Build/**/*.fit
secrets: inherit
build_gcc:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.12']
tool-chain: ['GCC']
target: ['DEBUG']
extra-build-args: ['FIT_BUILD=TRUE', 'FIT_BUILD=FALSE']
name: Build UPL GCC
uses: ./.github/workflows/BuildPlatform.yml
with:
runs-on: ${{ matrix.os }}
build-file: 'UefiPayloadPkg/PlatformCI/PlatformBuild.py'
python-version: ${{ matrix.python-version }}
tool-chain: ${{ matrix.tool-chain }}
target: ${{ matrix.target }}
extra-build-args: ${{ matrix.extra-build-args }}
extra-pip-requirements: 'pefile pylibfdt'
extra-setup-cmd: 'sudo dnf install -y llvm clang llvm-libs llvm-devel lldb'
extra-artifact-path: |
Build/**/*.elf
Build/**/*.fit