Skip to content

Commit f93132c

Browse files
committed
add workflows
Signed-off-by: Shuang Zheng <[email protected]>
1 parent b6538a4 commit f93132c

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/pr.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: premerge
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- actions
8+
9+
jobs:
10+
build:
11+
runs-on: acrn-shuang
12+
13+
steps:
14+
- name: Checkout master
15+
uses: actions/checkout@v2
16+
with:
17+
ref: master
18+
19+
- name: Apply patches
20+
run: echo "to apply patches"
21+
22+
- name: Build project
23+
run: make clean && make BOARD=nuc11tnbi5 SCENARIO=shard
24+
25+
test:
26+
runs-on: acrn-shuang
27+
28+
steps:
29+
- name: Test on nuc11tnbi5
30+
run: echo "test on nuc11tnbi5"
31+

0 commit comments

Comments
 (0)