We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576374f commit ec74323Copy full SHA for ec74323
.github/workflows/openharmony-build.yml
@@ -0,0 +1,30 @@
1
+name: OpenHarmony Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'v**'
7
+ pull_request:
8
9
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
29
+ chmod +x ./scripts/build-openharmony-arm64.sh
30
+ ./scripts/build-openharmony-arm64.sh
runtime.targets renamed to package/runtime.targets
0 commit comments