blob: b06171fbca9e2a04b2fb2b5fa564b124401f58ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -x
set -e
# by running the build wrapper again we should be able to test newer
# versions of the dependencies even without updating the docker image
# (but of course having the right things in place will save a ton of time)
docker exec -e TRAVIS="$TRAVIS" -t android-builder sh -c "ln -s /android/Qt . ; ln -s /android/android-ndk-r18b . ; ln -s /android/android-sdk-linux . ; subsurface/packaging/android/android-build-wrapper.sh"
ls -l ../subsurface-mobile-build-docker-arm*/build/outputs/apk/debug
|