forked from kivy/buildozer
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 820 Bytes
/
ios.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
on: [push, pull_request]
name: iOS
jobs:
Integration:
name: "Integration (${{ matrix.runs_on }}, ${{ matrix.python }})"
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
runs_on: [macos-latest, apple-silicon-m1]
steps:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: actions/checkout@v4
- name: Setup environment
run: |
pip install .[ios]
- name: Check buildozer installation
run: |
buildozer --help
- name: Initialize buildozer in project folder
run: |
buildozer init
- name: Install dependencies
run: |
brew install autoconf automake libtool pkg-config
- name: buildozer ios debug
run: |
touch main.py
buildozer ios debug