mirror of
https://github.com/budtmo/docker-android.git
synced 2026-07-31 04:07:25 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
34656ff759 | ||
|
|
405b0b7308 | ||
|
|
c66f55462c | ||
|
|
7be06eefef | ||
|
|
2ddfba647d | ||
|
|
49540d74fb | ||
|
|
ef717fc8a5 | ||
|
|
a31c2f0301 | ||
|
|
ca2b83faa0 | ||
|
|
ed48e174f6 | ||
|
|
9b6a033133 | ||
|
|
1ea2c74b18 | ||
|
|
c2e376c6f7 | ||
|
|
b21d26e151 | ||
|
|
971300eef3 | ||
|
|
c8efeea3b3 |
+24
-15
@@ -9,20 +9,10 @@ updates:
|
||||
commit-message:
|
||||
prefix: "[docker] "
|
||||
target-branch: "master"
|
||||
open-pull-requests-limit: 99
|
||||
reviewers:
|
||||
- "budtmo"
|
||||
|
||||
- package-ecosystem: pip
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: '01:00'
|
||||
timezone: "Europe/Berlin"
|
||||
commit-message:
|
||||
prefix: "[pip] "
|
||||
target-branch: "master"
|
||||
open-pull-requests-limit: 99
|
||||
open-pull-requests-limit: 10
|
||||
labels:
|
||||
- "dependabot"
|
||||
- "docker"
|
||||
reviewers:
|
||||
- "budtmo"
|
||||
|
||||
@@ -35,6 +25,25 @@ updates:
|
||||
commit-message:
|
||||
prefix: "[github-action] "
|
||||
target-branch: "master"
|
||||
open-pull-requests-limit: 99
|
||||
open-pull-requests-limit: 10
|
||||
labels:
|
||||
- "dependabot"
|
||||
- "github-action"
|
||||
reviewers:
|
||||
- "budtmo"
|
||||
|
||||
- package-ecosystem: pip
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: '01:00'
|
||||
timezone: "Europe/Berlin"
|
||||
commit-message:
|
||||
prefix: "[pip] "
|
||||
target-branch: "master"
|
||||
open-pull-requests-limit: 10
|
||||
labels:
|
||||
- "dependabot"
|
||||
- "pip"
|
||||
reviewers:
|
||||
- "budtmo"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
autopep8==2.3.2
|
||||
click==8.3.1
|
||||
coverage==7.13.4
|
||||
click==8.4.1
|
||||
coverage==7.14.1
|
||||
mock==5.2.0
|
||||
pytest==9.0.2
|
||||
pytest-cov==7.0.0
|
||||
pytest==9.0.3
|
||||
pytest-cov==7.1.0
|
||||
pytest-xdist==3.8.0
|
||||
requests==2.32.5
|
||||
setuptools==82.0.0
|
||||
requests==2.34.2
|
||||
setuptools==82.0.1
|
||||
|
||||
@@ -23,7 +23,9 @@ class Emulator(Device):
|
||||
"Samsung Galaxy S8",
|
||||
"Samsung Galaxy S9",
|
||||
"Samsung Galaxy S10",
|
||||
"Pixel C"
|
||||
"Pixel C",
|
||||
"Pixel 8",
|
||||
"Pixel 9"
|
||||
)
|
||||
|
||||
API_LEVEL = {
|
||||
@@ -151,7 +153,8 @@ class Emulator(Device):
|
||||
creation_cmd = "avdmanager create avd -f -n {n} -b {it}/{si} " \
|
||||
"-k 'system-images;android-{al};{it};{si}' " \
|
||||
"-d {d} -p {pe}".format(n=self.name, it=self.img_type, si=self.sys_img,
|
||||
al=self.api_level, d=self.device.replace(" ", "\ "),
|
||||
al=self.api_level,
|
||||
d=self.device.lower().replace(" ", "_") if "pixel" in self.device.lower() else self.device.replace(" ", "\ "),
|
||||
pe=self.path_emulator)
|
||||
self.logger.info(f"Command to create emulator: '{creation_cmd}'")
|
||||
subprocess.check_call(creation_cmd, shell=True)
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM appium/appium:v3.2.2-p0
|
||||
FROM appium/appium:v3.4.2-p0
|
||||
|
||||
ARG AUTHORS="Budi Utomo"
|
||||
LABEL author="${AUTHORS} <budtmo.os@gmail.com>"
|
||||
|
||||
+1
-1
@@ -44,7 +44,7 @@ RUN apt-get -qqy update && apt-get -qqy install --no-install-recommends \
|
||||
#=======
|
||||
# noVNC
|
||||
#=======
|
||||
ENV NOVNC_VERSION="1.6.0" \
|
||||
ENV NOVNC_VERSION="1.7.0" \
|
||||
WEBSOCKIFY_VERSION="0.13.0" \
|
||||
OPT_PATH="/opt"
|
||||
RUN wget -nv -O noVNC.zip "https://github.com/novnc/noVNC/archive/refs/tags/v${NOVNC_VERSION}.zip" \
|
||||
|
||||
Reference in New Issue
Block a user