Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Zhao, Zhiqiang <[email protected]>
  • Loading branch information
Zhiqiang520 committed Aug 15, 2023
1 parent 32af9b5 commit 9b33867
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: build

on:
push:
branches: [ "AddTestScript" ]
pull_request:
branches: [ "AddTestScript" ]
workflow_dispatch:

jobs:
build:

runs-on: windows-2019
defaults:
run:
shell: cmd

steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up NASM
uses: ilammy/setup-nasm@v1
- name: Set up python
uses: actions/setup-python@v4
id: cp380
with:
python-version: '3.8.0'
update-environment: true
- name: build
run: |
git branch
echo "===========!+++++Separator++++++!==========="
set PYTHON_HOME=${{ Env.pythonLocation }}
echo %PYTHON_HOME%
echo "===========!+++++Separator++++++!==========="
# file name too long will lead to build fail, so cutoff full path.
subst z: %cd%
cd /d z:\
call edksetup.bat Rebuild
call build.bat -p EmulatorPkg\EmulatorPkg.dsc -t VS2019 -a X64 -b DEBUG -j build_DEBUG.log
call build.bat -p DeviceSecurityTestPkg\DeviceSecurityTestPkg.dsc -t VS2019 -a X64 -b DEBUG -j build_DEBUG.log

0 comments on commit 9b33867

Please sign in to comment.