Skip to content

Commit

Permalink
Add github action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fdr committed Feb 20, 2024
1 parent 934860d commit 9cfb24e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: edk2 build
on: [create,push]

jobs:
build:
name: Build
strategy:
matrix:
runs-on: [ubicloud, ubicloud-arm]
runs-on: ${{matrix.runs-on}}

steps:
- name: Code checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get -y install uuid-dev iasl build-essential python3-distutils git libbrotli-dev nasm
- name: Build edk2
run: ./build-edk2
- name: List produced files
run: ls

0 comments on commit 9cfb24e

Please sign in to comment.