From d3b3e2200f53340aec9d9924ff298d9f8b0246fc Mon Sep 17 00:00:00 2001 From: ZhaoXi Date: Sun, 31 Dec 2023 13:36:51 +0800 Subject: [PATCH] add new ci workflow --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 375c4922b..f0d692d77 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,17 +2,17 @@ name: build on: push: - branches: [openeuler, opensbi] + branches: [opensbi] pull_request: - branches: [openeuler, opensbi] + branches: [opensbi] jobs: - build: + build_run: runs-on: ubuntu-latest - name: build penglai enclave (based on openSBI) + name: Build and run penglai enclave steps: - - name: Check out code - uses: actions/checkout@v2 - - name: build step - id: build - uses: Ddnirvana/action-penglai-build@v1 + - name: Checkout repository + uses: actions/checkout@v2 + - name: Build and test Penglai monitor (based on OpenSBI). + id: build_run + uses: Fly0307/action-penglai-opensbi-build-and-test@oe-23