Add ios version #202
Workflow file for this run
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] | |
env: | |
PYTHONFORANDROID_PREREQUISITES_INSTALL_INTERACTIVE: 0 | |
name: Android Integration | |
jobs: | |
Integration: | |
strategy: | |
matrix: | |
os: | |
- 'ubuntu-latest' | |
- 'macOs-latest' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- uses: actions/checkout@v2 | |
- name: Setup environment | |
run: | | |
pip install -e . | |
- run: buildozer --help | |
- run: buildozer init | |
- name: SDK, NDK and p4a download | |
run: | | |
sed -i.bak "s/# android.accept_sdk_license = False/android.accept_sdk_license = True/" buildozer.spec | |
sed -i.bak "s/#p4a.branch = master/p4a.branch = develop/" buildozer.spec | |
buildozer android p4a -- --help | |
- name: Debug Build | |
run: | | |
touch main.py | |
buildozer android debug | |
- name: Release Build (aab) | |
run: | | |
touch main.py | |
export BUILDOZER_ALLOW_ORG_TEST_DOMAIN=1 | |
buildozer android release |