forked from openstf/stf
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from michal-murin/master
ANDROID-4820 Update android 12 support
- Loading branch information
Showing
22 changed files
with
1,113 additions
and
748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
ignore: | ||
- dependency-name: karma | ||
versions: | ||
- 6.0.0 | ||
- 6.1.0 | ||
- 6.1.2 | ||
- 6.2.0 | ||
- dependency-name: semver | ||
versions: | ||
- 7.3.4 | ||
- dependency-name: style-loader | ||
versions: | ||
- 1.2.1 | ||
- dependency-name: express-validator | ||
versions: | ||
- 6.9.2 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: "3" | ||
|
||
services: | ||
rethinkdb: | ||
container_name: rethinkdb | ||
image: rethinkdb:2.3 | ||
restart: unless-stopped | ||
volumes: | ||
- "rethinkdb-data:/data" | ||
command: "rethinkdb --bind all --cache-size 2048" | ||
|
||
adb: | ||
container_name: adb | ||
image: devicefarmer/adb:latest | ||
restart: unless-stopped | ||
volumes: | ||
- "/dev/bus/usb:/dev/bus/usb" | ||
privileged: true | ||
|
||
stf: | ||
container_name: stf | ||
image: devicefarmer/stf | ||
ports: | ||
- "7100:7100" | ||
- "7110:7110" | ||
- "7400-7500:7400-7500" | ||
environment: | ||
- TZ='America/Los_Angeles' | ||
- RETHINKDB_PORT_28015_TCP=tcp://rethinkdb:28015 | ||
- STF_ADMIN_EMAIL=<YOUR_EMAIL> | ||
- STF_ADMIN_NAME=<YOUR_NAME> | ||
restart: unless-stopped | ||
command: stf local --adb-host adb --public-ip YOUR_IP --provider-min-port 7400 --provider-max-port 7500 | ||
|
||
volumes: | ||
rethinkdb-data: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.