mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
130 lines
4.1 KiB
YAML
130 lines
4.1 KiB
YAML
# 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/.
|
|
---
|
|
loader: taskgraph.loader.transform:loader
|
|
|
|
transforms:
|
|
- fenix_taskgraph.transforms.build:transforms
|
|
- taskgraph.transforms.job:transforms
|
|
- taskgraph.transforms.task:transforms
|
|
|
|
kind-dependencies:
|
|
- toolchain
|
|
|
|
|
|
job-defaults:
|
|
# Builds generate multiple APKs with different ABIs. For each APK described
|
|
# by `gradlew printVariant`, an artifact will be generated. `variant` and
|
|
# the per-apk config from `printVariant` can be used as substitutions in
|
|
# `name` and `path`.
|
|
apk-artifact-template:
|
|
type: file
|
|
name: public/build/{abi}/target.apk
|
|
github-name: 'fenix-{version}-{abi}.apk'
|
|
path: '/builds/worker/checkouts/src/app/build/outputs/apk/{gradle_build_type}/{fileName}'
|
|
description: Build Fenix from source code.
|
|
fetches:
|
|
toolchain:
|
|
- android-sdk-linux
|
|
- android-gradle-dependencies
|
|
run:
|
|
using: gradlew
|
|
use-caches: false
|
|
run-on-tasks-for: []
|
|
treeherder:
|
|
kind: build
|
|
symbol: B
|
|
platform: android-all/opt
|
|
tier: 1
|
|
worker-type: b-android
|
|
worker:
|
|
docker-image: {in-tree: base}
|
|
max-run-time: 7200
|
|
chain-of-trust: true
|
|
|
|
|
|
jobs:
|
|
debug:
|
|
attributes:
|
|
code-review: true
|
|
run-on-tasks-for: [github-pull-request, github-push]
|
|
run:
|
|
gradle-build-type: debug
|
|
treeherder:
|
|
symbol: debug(B)
|
|
|
|
android-test-debug:
|
|
attributes:
|
|
code-review: true
|
|
run-on-tasks-for: [github-pull-request, github-push]
|
|
run:
|
|
gradle-build-type: androidTest
|
|
apk-artifact-template:
|
|
# 2 differences here: "androidTest/" is added and "{gradle_build_type}" is forced to "debug"
|
|
path: '/builds/worker/checkouts/src/app/build/outputs/apk/androidTest/debug/{fileName}'
|
|
treeherder:
|
|
symbol: debug(Bat)
|
|
|
|
# android-test-nightly, while still being a debug build, is meant to be signed with the nightly
|
|
# key. The Firebase testing infrastructure requires both the androidTest APK and the APK under
|
|
# test to be signed with the same key. Thus, the nightly APK being signed with nightly means
|
|
# we need an androidTest APK with the same signature.
|
|
#
|
|
# TODO: See if we can tweak the signing kind to make 2 signing jobs out of a single `android-test`
|
|
# job.
|
|
android-test-nightly:
|
|
attributes:
|
|
nightly: true
|
|
run:
|
|
gradle-build-type: androidTest
|
|
apk-artifact-template:
|
|
# 2 differences here: "androidTest/" is added and "{gradle_build_type}" is forced to "debug"
|
|
path: '/builds/worker/checkouts/src/app/build/outputs/apk/androidTest/debug/{fileName}'
|
|
treeherder:
|
|
symbol: nightly(Bat)
|
|
|
|
nightly-simulation:
|
|
attributes:
|
|
nightly: false
|
|
run-on-tasks-for: [github-push]
|
|
include-nightly-version: true
|
|
include-shippable-secrets: true
|
|
run:
|
|
gradle-build-type: nightly
|
|
treeherder:
|
|
symbol: nightlySim(B)
|
|
|
|
nightly:
|
|
attributes:
|
|
nightly: true
|
|
include-nightly-version: true
|
|
include-shippable-secrets: true
|
|
run:
|
|
gradle-build-type: nightly
|
|
run-on-tasks-for: []
|
|
treeherder:
|
|
symbol: nightly(B)
|
|
|
|
beta:
|
|
attributes:
|
|
release-type: beta
|
|
include-release-version: true
|
|
include-shippable-secrets: true
|
|
filter-incomplete-translations: true
|
|
run:
|
|
gradle-build-type: beta
|
|
treeherder:
|
|
symbol: beta(B)
|
|
|
|
release:
|
|
attributes:
|
|
release-type: release
|
|
include-release-version: true
|
|
include-shippable-secrets: true
|
|
filter-incomplete-translations: true
|
|
run:
|
|
gradle-build-type: release
|
|
treeherder:
|
|
symbol: release(B)
|