Skip to content

Commit 23d35a6

Browse files
committed
[actions] Add build stage: pull docker image & build an testapp
1 parent f0d6a62 commit 23d35a6

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/push.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Unit tests
1+
name: Unit tests & Build Testapp
22

33
on: ['push', 'pull_request']
44

@@ -49,3 +49,17 @@ jobs:
4949
python -m coveralls
5050
env:
5151
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
52+
53+
build:
54+
name: Build testapp
55+
needs: [flake8]
56+
runs-on: ubuntu-latest
57+
steps:
58+
- name: Checkout python-for-android
59+
uses: actions/checkout@master
60+
- name: Pull docker image
61+
run: |
62+
make docker/pull
63+
- name: Build apk for Python 3 arm64-v8a
64+
run: |
65+
make docker/run/make/testapps/python3/arm64-v8a

0 commit comments

Comments
 (0)