Skip to content
Snippets Groups Projects
Commit c0c56b3a authored by Alexandre Lision's avatar Alexandre Lision
Browse files

* #39365: jenkins script now build x86 sflphone app

Apk generated cannot be used on real devices, no need for now, but it could be useful
to have two types of builds: for tests on x86 emulator, and nightlies.
parent 08494101
No related branches found
No related tags found
No related merge requests found
...@@ -107,48 +107,38 @@ launch_emulator() { ...@@ -107,48 +107,38 @@ launch_emulator() {
} }
build_sflphone_android() { build_sflphone_android() {
echo "----------------- Cleaning git tree" echo "----------------- Cleaning git tree"
# get rid of any local modifications to git submodule # get rid of any local modifications to git submodule
git submodule update git submodule update
echo "----------------- Pull sflphone daemon master branch" pushd jni/sflphone
pushd jni/sflphone
git checkout master git checkout master
git pull git pull
# build daemon echo "----------------- Daemon setup"
echo "----------------- Build daemon"
cd daemon cd daemon
./autogen.sh ./autogen.sh
./configure-android.sh ./configure-android.sh
popd popd
# android update project --target $VIRTUAL_DEVICE_ID --path $ANDROID_PROJECT_PATH # android update project --target $VIRTUAL_DEVICE_ID --path $ANDROID_PROJECT_PATH
echo "----------------- Compile pjandroid stack" echo "----------------- Compile pjandroid stack"
pushd jni/pjproject-android/ pushd jni/pjproject-android/
TARGET_ABI=x86 ./configure-android-patched --use-ndk-cflags TARGET_ABI=x86 ./configure-android-patched --use-ndk-cflags --disable-sound --disable-oss --disable-video --enable-ext-sound --disable-speex-aec --disable-g711-codec --disable-l16-codec --disable-gsm-codec --disable-g722-codec --disable-g7221-codec --disable-speex-codec --disable-ilbc-codec --disable-sdl --disable-ffmpeg --disable-v4l2
--disable-sound --disable-oss --disable-video make dep && make
--enable-ext-sound --disable-speex-aec --disable-g711-codec
--disable-l16-codec --disable-gsm-codec
--disable-g722-codec --disable-g7221-codec
--disable-speex-codec --disable-ilbc-codec
--disable-sdl --disable-ffmpeg --disable-v4l2
make dep && make clean && make
popd popd
./make-swig.sh ./make-swig.sh
cd jni/ cd jni/
echo "----------------- Build JNI related libraries" echo "----------------- Build JNI related libraries"
# ndk-build clean # ndk-build clean
$ANDROID_NDK/ndk-build $ANDROID_NDK/ndk-build APP_ABI=x86
cd .. cd ..
echo "----------------- Build Java application" echo "----------------- Build Java application"
ant update project -p . ant update project -p .
ant clean ant clean
ant debug ant debug
# echo "Upload sflphone on the virtual device" # echo "Upload sflphone on the virtual device"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment