Add Fedora 43 AArch64 image and fix OvmfPkg in AArch64 images #4
Workflow file for this run
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
| # GitHub Action Workflow for building the Fedora 43 AArch64 images. | |
| # SPDX-License-Identifier: BSD-2-Clause-Patent | |
| name: "Fedora 43 AArch64 Images" | |
| # This workflow only runs (on the main branch or on PRs targeted | |
| # at the main branch) and if files inside the Fedora-43 directory | |
| # have been modifed/added/removed... | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'Fedora-43/**' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'Fedora-43/**' | |
| jobs: | |
| Build_Image: | |
| uses: ./.github/workflows/build-image.yaml | |
| with: | |
| image_base_name: "Fedora-43" | |
| image_suffix: "-aarch64" | |
| sub_images: "build test dev" | |
| runs_on: "ubuntu-24.04-arm" | |
| target_platform: "linux/arm64" |