New builds #58
This file contains 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
on: [push, pull_request] | |
name: Android | |
jobs: | |
Integration: | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-latest" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.buildozer | |
.buildozer | |
key: ${{ hashFiles('tools/build/buildozer.spec') }} | |
- name: Setup environment | |
run: | | |
pip install buildozer | |
pip install Cython | |
- name: Install Linux dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt -y install libltdl-dev automake | |
- name: buildozer android debug | |
run: | | |
sh tools/build/build-android.sh | |
- uses: actions/upload-artifact@v4.6.1 | |
with: | |
path: .buildozer/bin/*.apk |