Set up CI with Azure Pipelines

This commit is contained in:
azure-pipelines[bot] 2018-10-30 22:43:27 +00:00 committed by Pierre-Hugues HUSSON
parent b0f0827fab
commit d157913b4f
4 changed files with 14 additions and 0 deletions

12
azure-pipelines.yml Normal file
View file

@ -0,0 +1,12 @@
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: |
sudo apt install xmlstarlet
cd build
bash build.sh
displayName: 'Building APKs'
- script: bash tests/tests.sh
displayName: 'Running test scripts'

BIN
build/aapt Executable file

Binary file not shown.

View file

@ -2,6 +2,8 @@
set -e
export LD_LIBRARY_PATH=.
export PATH=$PATH:.
if ! which aapt > /dev/null;then
echo "Please install aapt (apt install aapt should do)"
exit 1

BIN
build/libc++.so Executable file

Binary file not shown.