Bump Features/DFCI from 5ef17e2 to 71ac4d0 (#1691)
#932
This file contains hidden or 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-24.04 | |
| 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 |