SmokelessRuntimeEFIPatcher/.github/workflows/c-cpp.yml
2022-08-04 12:46:15 +02:00

32 lines
723 B
YAML

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Install Missing Tools
run: sudo apt install nasm
- uses: actions/checkout@v3
with:
repository: tianocore/edk2
ref: 'edk2-stable202205'
submodules : true
path: edk2
- uses: actions/checkout@v3
with:
path: edk2/SmokelessRuntimeEFIPatcher
- name: Build Base Tools
working-directory: edk2
run: make -C BaseTools
- name: Build
working-directory: edk2
run: "source edksetup.sh && build -t GCC5 -p SmokelessRuntimeEFIPatcher/SmokelessRuntimeEFIPatcher.dsc -a X64 -s"