Merge pull request #460 from AndreMiras/feature/ci_minimal_build

Continuous Integration minimal build
This commit is contained in:
Andre Miras 2020-04-30 13:03:11 +02:00 committed by GitHub
commit 49a13bbbb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,26 @@ jobs:
pip install tox>=2.0
tox -e pep8
build_python3_kivy:
runs-on: macos-latest
steps:
- name: Checkout kivy-ios
uses: actions/checkout@v2
- name: Set up Python 3.7.x
uses: actions/setup-python@v1
with:
python-version: 3.7.x
- name: Install requirements
run: |
pip3 install -r requirements.txt
pip3 install sh
brew install autoconf automake libtool pkg-config
brew link libtool
pip3 install Cython==0.28.1
- name: Build Python & Kivy
run: |
python toolchain.py build python3 kivy
build_updated_recipes:
runs-on: macos-latest
steps: