Skip to content

Commit

Permalink
chore(build): remove android build
Browse files Browse the repository at this point in the history
Signed-off-by: Jiyong Huang <[email protected]>
  • Loading branch information
ngjaying committed Jan 9, 2025
1 parent afdba0d commit dfc933c
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,42 +99,6 @@ jobs:
name: packages
path: _packages/

build-for-android:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: '1.21.3'
- uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r24
add-to-path: false
- name: prepare
run: |
cp -r etc app
cd app
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: |
ver=$(git describe --tags --always | sed 's/^v//g')
cd app
cp -r etc app
fyne package -os android/arm64 -name kuiper-$ver -metadata version=$ver -release -appID github.com.lfedge.ekuiper -icon icon.png || true
mkdir -p ../_packages
# The version name will be modified by fyne package, convert . and - to _
mv kuiper* ../_packages/
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
path: _packages/

build-docker-images:
runs-on: ubuntu-latest

Expand Down Expand Up @@ -384,7 +348,6 @@ jobs:
needs:
- build
- build-on-mac
- build-for-android
- build-plugins

steps:
Expand Down

0 comments on commit dfc933c

Please sign in to comment.