Skip to content

Commit

Permalink
Dropped polyverse support
Browse files Browse the repository at this point in the history
  • Loading branch information
budtmo committed Apr 8, 2022
1 parent 94a3f40 commit 9f58ad6
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 42 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,11 +252,8 @@ docker exec -it android-container tail -f /var/log/supervisor/docker-android.std
Emulator Skins
--------------
The Emulator skins are taken from [Android Studio IDE](https://developer.android.com/studio) and [Samsung Developer Website](e)
The Emulator skins are taken from [Android Studio IDE](https://developer.android.com/studio) and [Samsung Developer Website](https://developer.samsung.com/)
Security
--------
All docker images are protected by [Polyverse](https://polyverse.io/) by scrambling the Linux packages. For more information please visit [this link](https://polyverse.com/products/polymorphing-linux-security/)
Monitoring
----------
Expand Down
12 changes: 0 additions & 12 deletions docker/Emulator_x86
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,6 @@ LABEL maintainer "Budi Utomo <[email protected]>"
#=============
WORKDIR /root

#===========
# Polyverse
# https://polyverse.io/how-it-works/
#===========
ARG TOKEN=xxx

RUN curl -s https://sh.polyverse.io | sh -s install ${TOKEN}; \
if [ $? -eq 0 ]; then \
apt -y update && \
apt-get -y install --reinstall $(dpkg --get-selections | awk '{print $1}'); \
fi

#==================
# General Packages
#------------------
Expand Down
12 changes: 0 additions & 12 deletions docker/Genymotion
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,6 @@ LABEL maintainer "Budi Utomo <[email protected]>"
#=============
WORKDIR /root

#===========
# Polyverse
# https://polyverse.io/how-it-works/
#===========
ARG TOKEN=xxx

RUN curl -s https://sh.polyverse.io | sh -s install ${TOKEN}; \
if [ $? -eq 0 ]; then \
apt -y update && \
apt-get -y install --reinstall $(dpkg --get-selections | awk '{print $1}'); \
fi

#==================
# General Packages
#------------------
Expand Down
12 changes: 0 additions & 12 deletions docker/Real_device
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,6 @@ LABEL maintainer "Budi Utomo <[email protected]>"
#=============
WORKDIR /root

#===========
# Polyverse
# https://polyverse.io/how-it-works/
#===========
ARG TOKEN=xxx

RUN curl -s https://sh.polyverse.io | sh -s install ${TOKEN}; \
if [ $? -eq 0 ]; then \
apt -y update && \
apt-get -y install --reinstall $(dpkg --get-selections | awk '{print $1}'); \
fi

#==================
# General Packages
#------------------
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release-emulators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- script: |
docker login -u $(DOCKER_USERNAME) -p=$(DOCKER_PASSWORD)
TOKEN=$(polyverse_token) ./release.sh all $(android.version) $(release_version)
./release.sh all $(android.version) $(release_version)
docker logout
displayName: 'Build docker image, run unit tests and push the docker image'
Expand Down
2 changes: 1 addition & 1 deletion pipelines/release-genymotion-and-device.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- script: |
docker login -u $(DOCKER_USERNAME) -p=$(DOCKER_PASSWORD)
TOKEN=$(p_token) $(script.name) all $(release_version)
$(script.name) all $(release_version)
docker logout
displayName: 'Build docker image, run unit tests and push the docker image'
Expand Down

0 comments on commit 9f58ad6

Please sign in to comment.