Bump Features/DFCI from f75d64b
to 2bf78af
#549
Workflow file for this run
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: Build UEFI for active devices | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- 'Binaries' | |
- 'Common/**' | |
- 'Features/**' | |
- 'Mu_Basecore' | |
- 'MuPatches/**' | |
- 'Platforms/**' | |
- 'Silicon/**' | |
- 'Silicium-ACPI' | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened] | |
paths: | |
- 'Binaries' | |
- 'Common/**' | |
- 'Features/**' | |
- 'Mu_Basecore' | |
- 'MuPatches/**' | |
- 'Platforms/**' | |
- 'Silicon/**' | |
- 'Silicium-ACPI' | |
env: | |
CI_BUILD: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build UEFI for active devices | |
run: bash ./setup_env.sh -p apt && bash ./build_active_devices.sh | |
- name: Upload UEFI images | |
uses: actions/upload-artifact@v4 | |
with: | |
name: uefi-images | |
path: ./Mu-* | |
compression-level: 9 |