Skip to content

Commit ec74323

Browse files
committed
调整runtime.targets位置,新增github action
1 parent 576374f commit ec74323

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: OpenHarmony Build
2+
3+
on:
4+
push:
5+
branches:
6+
- 'v**'
7+
pull_request:
8+
branches:
9+
- 'v**'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Docker
20+
uses: docker/setup-buildx-action@v2
21+
22+
- name: build for x64
23+
run: |
24+
chmod +x ./scripts/build-openharmony-x64.sh
25+
./scripts/build-openharmony-x64.sh
26+
27+
- name: build for arm64
28+
run: |
29+
chmod +x ./scripts/build-openharmony-arm64.sh
30+
./scripts/build-openharmony-arm64.sh
File renamed without changes.

0 commit comments

Comments
 (0)