You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2023. It is now read-only.
- if [ $TRAVIS_OS_NAME == linux ]; then cat /proc/cpuinfo; fi
45
43
# coverage
46
44
- if [ "$VMF_GCOV_OPTS" != "" ]; then pip install --user cpp-coveralls; pip install --user codecov; fi
47
45
# android
48
46
- if [ "$VMF_ANDROID_BUILD" != "" ]; then time git clone --depth=1 https://github.com/apavlenko/android-ndk.git $HOME/android-ndk; export ANDROID_NDK=$HOME/android-ndk; fi
49
-
#- if [ "$VMF_ANDROID_BUILD" != "" ]; then android list; fi
50
47
- if [ "$VMF_ANDROID_BUILD" != "" ]; then android-update-sdk --components=sys-img-${VMF_CPU_ARCH}-${VMF_API_LEVEL}; fi
51
48
before_script:
52
49
- mkdir ../build
@@ -70,7 +67,7 @@ after_success:
70
67
- cd $TRAVIS_BUILD_DIR/../build && pwd
71
68
# coverage
72
69
- if [ "$VMF_GCOV_OPTS" != "" ]; then coveralls --exclude build/CMakeFiles --exclude vmf/3rdparty --exclude vmf/modules/vmfcore/test --exclude vmf/modules/vmdatasource/test --gcov-options '\-lp' --gcov gcov-4.8 --root .. --build-root . > /dev/null; fi
73
-
- if [ "$VMF_GCOV_OPTS" != "" ]; then codecov --root .. --gcov-exec gcov-4.8 > /dev/null; fi
70
+
- if [ "$VMF_GCOV_OPTS" != "" ]; then codecov --root ../vmf --gcov-exec gcov-4.8 > /dev/null; fi
0 commit comments