feat(.github): Enable FirmwareCI for EDK2 OVMF builds #1
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: "EDK2 FirmwareCI Tests" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- dev | ||
pull_request: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- '**/*.bat' | ||
- '**/*.md' | ||
- '**/*.py' | ||
- '**/*.rst' | ||
- '**/*.sh' | ||
- '**/*.txt' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
binaryArtifact: ${{ env.artifact }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: Install dependencies | ||
run: apt update && apt install -y software-properties-common apt-utils \ | ||
cryptsetup apt-transport-https sudo wget build-essential uuid-dev \ | ||
git lcov nasm acpica-tools virtualenv device-tree-compiler mono-devel \ | ||
python3 python3-pip python3-venv locales gnupg ca-certificates | ||