Set up CI with Azure Pipelines
This commit is contained in:
parent
b0f0827fab
commit
d157913b4f
4 changed files with 14 additions and 0 deletions
12
azure-pipelines.yml
Normal file
12
azure-pipelines.yml
Normal 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
BIN
build/aapt
Executable file
Binary file not shown.
|
@ -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
BIN
build/libc++.so
Executable file
Binary file not shown.
Loading…
Add table
Reference in a new issue