summaryrefslogtreecommitdiffstats
path: root/testing/mozharness/configs/builds/releng_sub_android_configs/64_geckoview_docs.py
blob: 55022fa99b665891d67b9b10876766b288a93278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

config = {
    "stage_platform": "android-geckoview-docs",
    "src_mozconfig": "mobile/android/config/mozconfigs/android-arm/nightly-android-lints",
    # geckoview-docs doesn't produce a package. So don't collect package metrics.
    "disable_package_metrics": True,
    "postflight_build_mach_commands": [
        [
            "android",
            "geckoview-docs",
            "--archive",
            "--upload",
            "mozilla/geckoview",
            "--upload-branch",
            "gh-pages",
            "--javadoc-path",
            "javadoc/{project}",
            "--upload-message",
            "Update {project} documentation to rev {revision}",
        ],
    ],
    "max_build_output_timeout": 0,
}