Fixed escape char

This commit is contained in:
butomo1989 2018-08-27 14:31:28 +02:00
commit efd1f07e58
3 changed files with 8 additions and 12 deletions

View file

@ -43,7 +43,7 @@ List of Docker images
|OS |Android |API |Browser |Browser version |Chromedriver |Image |Size | |OS |Android |API |Browser |Browser version |Chromedriver |Image |Size |
|:---|:---|:---|:---|:---|:---|:---|:---| |:---|:---|:---|:---|:---|:---|:---|:---|
|Linux|5.0.1|21|browser|37.0|2.12|butomo1989/docker-android-x86-5.0.1|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-5.0.1.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-5.0.1 "Get your own image badge on microbadger.com")| |Linux|5.0.1|21|browser|37.0|2.21|butomo1989/docker-android-x86-5.0.1|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-5.0.1.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-5.0.1 "Get your own image badge on microbadger.com")|
|Linux|5.1.1|22|browser|39.0|2.13|butomo1989/docker-android-x86-5.1.1|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-5.1.1.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-5.1.1 "Get your own image badge on microbadger.com")| |Linux|5.1.1|22|browser|39.0|2.13|butomo1989/docker-android-x86-5.1.1|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-5.1.1.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-5.1.1 "Get your own image badge on microbadger.com")|
|Linux|6.0|23|browser|44.0|2.18|butomo1989/docker-android-x86-6.0|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-6.0.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-6.0 "Get your own image badge on microbadger.com")| |Linux|6.0|23|browser|44.0|2.18|butomo1989/docker-android-x86-6.0|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-6.0.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-6.0 "Get your own image badge on microbadger.com")|
|Linux|7.0|24|chrome|51.0|2.23|butomo1989/docker-android-x86-7.0|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-7.0.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-7.0 "Get your own image badge on microbadger.com")| |Linux|7.0|24|chrome|51.0|2.23|butomo1989/docker-android-x86-7.0|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-7.0.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-7.0 "Get your own image badge on microbadger.com")|
@ -370,6 +370,11 @@ All logs inside container are stored under folder **/var/log/supervisor**. you c
docker exec -it android-container tail -f /var/log/supervisor/docker-android.stdout.log docker exec -it android-container tail -f /var/log/supervisor/docker-android.stdout.log
``` ```
Running on Azure
----------------
Make sure that the nodes, pods, containers for your emulators are generated within a **VM** of series **Dv3** or **Ev3**.
Reference: https://docs.microsoft.com/en-us/azure/virtual-machines/windows/nested-virtualization
Special Thanks Special Thanks
-------------- --------------
- [Gian Christanto] for creating a great logo! - [Gian Christanto] for creating a great logo!

View file

@ -34,7 +34,7 @@ declare -A list_of_levels=(
# The version of the Chrome browser installed on the Android emulator needs to be known beforehand # The version of the Chrome browser installed on the Android emulator needs to be known beforehand
# in order to chose the proper version of chromedriver (see http://chromedriver.chromium.org/downloads) # in order to chose the proper version of chromedriver (see http://chromedriver.chromium.org/downloads)
declare -A chromedriver_versions=( declare -A chromedriver_versions=(
[5.0.1]="2.12" [5.0.1]="2.21"
[5.1.1]="2.13" [5.1.1]="2.13"
[6.0]="2.18" [6.0]="2.18"
[7.0]="2.23" [7.0]="2.23"

View file

@ -142,15 +142,6 @@ _EOF
./terraform plan ./terraform plan
./terraform apply -auto-approve ./terraform apply -auto-approve
sleep(10)
# Connect with adb
echo "Enable adb for all instances"
for ((i=index;i>=1;i--)); do
dns=$(./terraform output public_dns_$index)
echo $dns
ssh -i ~/.ssh/id_rsa -oStrictHostKeyChecking=no $dns 'setprop persist.sys.usb.config adb && exit'
echo "Adb is enabled"
done
#TODO #TODO
} }