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
edx
configuration
Commits
bc3f6aae
Commit
bc3f6aae
authored
Aug 24, 2016
by
stu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add the other tools needed to test the android app
parent
49911496
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
playbooks/roles/android_sdk/defaults/main.yml
+7
-1
playbooks/roles/android_sdk/tasks/main.yml
+5
-0
playbooks/roles/jenkins_worker/meta/main.yml
+7
-1
No files found.
playbooks/roles/android_sdk/defaults/main.yml
View file @
bc3f6aae
...
...
@@ -8,6 +8,12 @@ android_download: "android-sdk_r24.4.1-linux.tgz"
android_checksum
:
"
725bb360f0f7d04eaccff5a2d57abdd49061326d"
# path to installed android sdk
android_home
:
"
/opt/android-sdk-linux"
# individual android build targets to be downloaded via the androi
n
d sdk manager
# individual android build targets to be downloaded via the android sdk manager
android_build_targets
:
-
android-23
# other android dependencies that cannot be tested via the android sdk manager
android_tools
:
-
platform-tools
-
build-tools-23.0.3
-
extra-google-m2repository
-
extra-android-m2repository
playbooks/roles/android_sdk/tasks/main.yml
View file @
bc3f6aae
...
...
@@ -37,3 +37,8 @@
shell
:
"
echo
'y'
|
{{
android_home
}}/tools/android
update
sdk
--no-ui
--filter
{{
','.join(android_build_targets)
}}"
become
:
yes
become_user
:
"
{{
android_user
}}"
# Use the android sdk manager to install the build tools necessary for the edx mobile app
-
name
:
Install Android API levels
shell
:
"
echo
'y'
|
{{
android_home
}}/tools/android
update
sdk
--no-ui
--filter
{{
','.join(android_tools)
}}"
become
:
yes
become_user
:
"
{{
android_user
}}"
playbooks/roles/jenkins_worker/meta/main.yml
View file @
bc3f6aae
...
...
@@ -28,6 +28,12 @@ dependencies:
android_checksum
:
"
725bb360f0f7d04eaccff5a2d57abdd49061326d"
# path to installed android sdk
android_home
:
"
/opt/android-sdk-linux"
# individual android build targets to be downloaded via the androi
n
d sdk manager
# individual android build targets to be downloaded via the android sdk manager
android_build_targets
:
-
android-23
# other android dependencies that cannot be tested via the android sdk manager
android_tools
:
-
platform-tools
-
build-tools-23.0.3
-
extra-google-m2repository
-
extra-android-m2repository
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