Update build-openharmony-x64.sh #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OpenHarmony Build | |
on: | |
push: | |
branches: | |
- 'v**' | |
pull_request: | |
branches: | |
- 'v**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v2 | |
- name: Update Submodule | |
run: | | |
git submodule update --init --recursive | |
cd runtime | |
ls -al | |
- name: build for x64 | |
run: | | |
chmod +x ./scripts/build-openharmony-x64.sh | |
./scripts/build-openharmony-x64.sh | |
- name: build for arm64 | |
run: | | |
chmod +x ./scripts/build-openharmony-arm64.sh | |
./scripts/build-openharmony-arm64.sh |