Bug 632954 - Add final Android PGO task; r=tomprince

Differential Revision: https://phabricator.services.mozilla.com/D22826

--HG--
extra : source : de8beacc5eb45a75087c1e9b8b69276d11888d53
This commit is contained in:
Mike Shal 2019-03-18 23:53:31 +00:00
parent 91ae472cd9
commit ed8c56587e
3 changed files with 61 additions and 0 deletions

View File

@ -334,6 +334,61 @@ android-api-16/opt:
- linux64-nasm
- linux64-node
android-api-16/pgo:
description: "Android 4.0 api-16+ PGO"
use-pgo: true
index:
product: mobile
job-name: android-api-16-pgo
attributes:
enable-full-crashsymbols: true
treeherder:
platform: android-4-0-armv7-api16/pgo
symbol: Bpgo(B)
worker-type: aws-provisioner-v1/gecko-{level}-b-android
worker:
docker-image: {in-tree: android-build}
max-run-time: 7200
env:
GRADLE_USER_HOME: "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline"
TOOLTOOL_MANIFEST: "mobile/android/config/tooltool-manifests/android/releng.manifest"
artifacts:
- name: public/android/maven
# TODO Bug 1433198. Remove the following entry once target.maven.zip is uploaded to a maven repository
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
type: directory
- name: public/build/target.maven.zip
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/target.maven.zip
type: file
- name: public/build/geckoview-androidTest.apk
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/outputs/apk/androidTest/withGeckoBinaries/debug/geckoview-withGeckoBinaries-debug-androidTest.apk
type: file
- name: public/build/geckoview_example.apk
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/withGeckoBinaries/debug/geckoview_example-withGeckoBinaries-debug.apk
type: file
- name: public/build
path: /builds/worker/artifacts/
type: directory
run:
using: mozharness
actions: [get-secrets, build]
config:
- builds/releng_base_android_64_builds.py
script: "mozharness/scripts/fx_desktop_build.py"
secrets: true
custom-build-variant-cfg: api-16-profile-use
tooltool-downloads: internal
toolchains:
- android-gradle-dependencies
- android-ndk-linux
- android-sdk-linux
- linux64-clang
- linux64-rust-android
- linux64-rust-size
- linux64-cbindgen
- linux64-nasm
- linux64-node
android-api-16-without-google-play-services/opt:
description: "Android 4.0 api-16+ (without Google Play Services) Opt"
index:

View File

@ -0,0 +1,5 @@
config = {
'stage_platform': 'android-api-16',
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-16/profile-use',
'multi_locale_config_platform': 'android',
}

View File

@ -373,6 +373,7 @@ class BuildOptionParser(object):
'api-16-debug-searchfox': 'builds/releng_sub_%s_configs/%s_api_16_debug_searchfox.py',
'api-16-gradle': 'builds/releng_sub_%s_configs/%s_api_16_gradle.py',
'api-16-profile-generate': 'builds/releng_sub_%s_configs/%s_api_16_profile_generate.py',
'api-16-profile-use': 'builds/releng_sub_%s_configs/%s_api_16_profile_use.py',
'api-16-without-google-play-services':
'builds/releng_sub_%s_configs/%s_api_16_without_google_play_services.py',
'rusttests': 'builds/releng_sub_%s_configs/%s_rusttests.py',