Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
6c298f6e
Commit
6c298f6e
authored
Nov 29, 2016
by
Stu Young
Committed by
GitHub
Nov 29, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3505 from edx/estute/fixes-on-android-worker
remove pip installs for android utils
parents
687f9cfc
a8754bc4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
20 deletions
+8
-20
playbooks/roles/android_sdk/tasks/main.yml
+8
-0
playbooks/roles/jenkins_worker/tasks/android_testing_tools.yml
+0
-16
playbooks/roles/jenkins_worker/tasks/main.yml
+0
-4
No files found.
playbooks/roles/android_sdk/tasks/main.yml
View file @
6c298f6e
...
...
@@ -57,3 +57,11 @@
update_cache
:
yes
state
:
present
with_items
:
"
{{
android_apt_libraries
}}"
# Link adb to tools, where all the rest of the android tools are
-
name
:
Add symlink for adb
file
:
src
:
"
{{
android_home
}}/platform-tools/adb"
dest
:
"
{{
android_home
}}/tools/adb"
state
:
link
owner
:
"
{{
android_user
}}"
group
:
"
{{
android_group
}}"
playbooks/roles/jenkins_worker/tasks/android_testing_tools.yml
deleted
100644 → 0
View file @
687f9cfc
---
# Install Python packages used for testing the edX Android app on Jenkins
# Note: normally, we use a virtual environment for pip installs on a Jenkins
# worker, but since this is the only instance of python being used on the machine
# we install them as system packages. If we start requiring more python, or
# add other jobs to this worker, please reconsider this.
-
name
:
Install Android testing requirements using pip
pip
:
name
:
"
{{
item
}}"
state
:
present
extra_args
:
"
--user
--exists-action=w"
executable
:
pip
with_items
:
-
pillow
-
codecov
playbooks/roles/jenkins_worker/tasks/main.yml
View file @
6c298f6e
...
...
@@ -14,10 +14,6 @@
-
include
:
python_platform_worker.yml
when
:
platform_worker is defined
# Only Android workers
-
include
:
android_testing_tools.yml
when
:
android_worker is defined
# Run appropriate tests
-
include
:
test.yml
-
include
:
test_platform_worker.yml
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment