Skip to content

Commit

Permalink
fix(build): build android
Browse files Browse the repository at this point in the history
Signed-off-by: Jiyong Huang <huangjy@emqx.io>
  • Loading branch information
ngjaying committed Oct 9, 2023
1 parent d632bbd commit 5cc016f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
run: |
cp -r etc app
cd app
sudo apt-get install libgl1-mesa-dev xorg-dev
sudo apt-get update && sudo apt-get install libgl1-mesa-dev xorg-dev
go install fyne.io/fyne/v2/cmd/fyne@latest
- name: build
run: |
Expand All @@ -119,7 +119,7 @@ jobs:
fyne package -os android/arm64 -name ekuiper -metadata version=$ver -release -appID gh.neting.cc.lfedge.ekuiper -icon icon.png || true
mkdir -p ../_packages
mv ekuiper.apk ../_packages/
cd _packages && for var in $(ls); do echo $(sha256sum $var | awk '{print $1}') > $var.sha256; done && cd -
cd ../_packages && for var in $(ls); do echo $(sha256sum $var | awk '{print $1}') > $var.sha256; done && cd -
- uses: actions/upload-artifact@v3
with:
name: packages
Expand Down

0 comments on commit 5cc016f

Please sign in to comment.