build: disable LLAMA_BUILD_APP in apple + android scripts #9
Workflow file for this run
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: build-android | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write # needed for action-gh-release to upload assets | |
| jobs: | |
| cpu: | |
| name: Android AAR (arm64-v8a, CPU + mtmd) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: install ninja | |
| run: sudo apt-get update && sudo apt-get install -y ninja-build | |
| - name: setup Android NDK | |
| id: setup-ndk | |
| uses: nttld/setup-ndk@v1 | |
| with: | |
| ndk-version: r27c | |
| add-to-path: false | |
| - name: build AAR | |
| run: tool/build_android_aar.sh --ndk "${{ steps.setup-ndk.outputs.ndk-path }}" --abi arm64-v8a --clean | |
| - name: stage and checksum | |
| run: | | |
| cp build/android/llama-cpp-dart.aar . | |
| shasum -a 256 llama-cpp-dart.aar > llama-cpp-dart.aar.sha256 | |
| - name: upload AAR | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: llama-cpp-dart-aar | |
| path: | | |
| llama-cpp-dart.aar | |
| llama-cpp-dart.aar.sha256 | |
| - name: attach to release | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| llama-cpp-dart.aar | |
| llama-cpp-dart.aar.sha256 | |
| fail_on_unmatched_files: true | |
| hexagon: | |
| name: Android AAR (arm64-v8a, Hexagon NPU + OpenCL + CPU + mtmd) | |
| runs-on: ubuntu-latest | |
| # The Snapdragon toolchain image is amd64-only. ubuntu-latest is x86_64 | |
| # so this runs natively (no Rosetta needed); ~5-10 min for a clean build. | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: build AAR (Snapdragon toolchain) | |
| run: tool/build_android_hexagon_aar.sh --clean | |
| # Pulls ghcr.io/snapdragon-toolchain/arm64-android:v0.3 (~8 GB). | |
| - name: stage and checksum | |
| run: | | |
| cp build/android-hexagon/llama-cpp-dart-hexagon.aar . | |
| shasum -a 256 llama-cpp-dart-hexagon.aar > llama-cpp-dart-hexagon.aar.sha256 | |
| - name: upload AAR | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: llama-cpp-dart-hexagon-aar | |
| path: | | |
| llama-cpp-dart-hexagon.aar | |
| llama-cpp-dart-hexagon.aar.sha256 | |
| - name: attach to release | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| llama-cpp-dart-hexagon.aar | |
| llama-cpp-dart-hexagon.aar.sha256 | |
| fail_on_unmatched_files: true |