diff --git a/.github/workflows/build_packages.yaml b/.github/workflows/build_packages.yaml index c3a8c82217..8eab94453f 100644 --- a/.github/workflows/build_packages.yaml +++ b/.github/workflows/build_packages.yaml @@ -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 @@ -384,7 +348,6 @@ jobs: needs: - build - build-on-mac - - build-for-android - build-plugins steps: