1
0

android build: place binaries in ./dist/ instead of ./bin/

Let's try to consolidate and have all build scripts put binaries into ./dist/
This commit is contained in:
SomberNight
2021-06-17 18:33:20 +02:00
parent 9625798a63
commit 5ae167d67d
5 changed files with 12 additions and 9 deletions

View File

@@ -78,8 +78,8 @@ jobs:
- sudo docker run -it -u 1000:1000 --rm --name electrum-android-builder-cont --env CI=true -v $PWD:/home/user/wspace/electrum --workdir /home/user/wspace/electrum electrum-android-builder-img ./contrib/android/make_apk
# kill background sleep loop
- kill %1
- ls -la bin
- if [ $(ls bin | grep -c Electrum-*) -eq 0 ]; then exit 1; fi
- ls -la dist
- if [ $(ls dist | grep -c Electrum-*) -eq 0 ]; then exit 1; fi
after_success: true
# disabled for now as travis started to always time out:
- if: false AND ((branch = master) OR (tag IS present))