forked from kivy/kivy-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 869 Bytes
/
setup.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
32
33
34
35
name: setup
on: [push, pull_request]
jobs:
checks:
runs-on: macos-latest
steps:
- name: Checkout kivy-ios
uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install --upgrade setuptools wheel twine
- name: sdist bdist_wheel
run: |
python setup.py sdist bdist_wheel
- name: Twine check
run: |
twine check dist/*
- name: Local install
run: |
python -m venv venv
. venv/bin/activate
pip install dist/kivy-ios-*.tar.gz
pip install Cython==0.29.36
brew install autoconf automake libtool pkg-config
- name: Basic toolchain commands
run: |
. venv/bin/activate
toolchain --help
toolchain recipes