Continuous Integration minimal build
Makes sure at least Python and Kivy are built every time.
This commit is contained in:
parent
8416d46fd4
commit
5ec5740d86
1 changed files with 20 additions and 0 deletions
20
.github/workflows/kivy_ios.yml
vendored
20
.github/workflows/kivy_ios.yml
vendored
|
@ -19,6 +19,26 @@ jobs:
|
||||||
pip install tox>=2.0
|
pip install tox>=2.0
|
||||||
tox -e pep8
|
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:
|
build_updated_recipes:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Add table
Reference in a new issue