File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 52
52
# installs java 1.8, android's SDK/NDK and p4a
53
53
- make -f ci/makefiles/osx.mk
54
54
- export JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home
55
- script : make testapps/armeabi-v7a PYTHON_WITH_VERSION=python3
55
+ script : make testapps-no-venv /armeabi-v7a
56
56
- << : *testapps
57
57
name : Rebuild updated recipes
58
58
script : travis_wait 30 make docker/run/make/rebuild_updated_recipes
Original file line number Diff line number Diff line change @@ -47,6 +47,14 @@ testapps/%: virtualenv
47
47
python setup.py apk --sdk-dir $(ANDROID_SDK_HOME) --ndk-dir $(ANDROID_NDK_HOME) \
48
48
--arch =$($@ _APP_ARCH)
49
49
50
+ testapps-no-venv/% :
51
+ pip3 install Cython==0.28.6
52
+ pip3 install -e .
53
+ $(eval $@ _APP_ARCH := $(shell basename $* ) )
54
+ cd testapps/on_device_unit_tests/ && \
55
+ python3 setup.py apk --sdk-dir $(ANDROID_SDK_HOME) --ndk-dir $(ANDROID_NDK_HOME) \
56
+ --arch =$($@ _APP_ARCH)
57
+
50
58
clean :
51
59
find . -type d -name " __pycache__" -exec rm -r {} +
52
60
find . -type d -name " *.egg-info" -exec rm -r {} +
You can’t perform that action at this time.
0 commit comments