1
0
Fork 0

Adds schedule_nightly_graph.py

master
Mitchell Hentges 2019-01-10 21:41:37 -08:00 committed by Emily Kager
parent 8476587ed6
commit 55abe72754
2 changed files with 3 additions and 4 deletions

View File

@ -47,7 +47,7 @@ android.applicationVariants.all { variant ->
// Our x86 builds need a higher version code to avoid installing ARM builds on an x86 device // Our x86 builds need a higher version code to avoid installing ARM builds on an x86 device
// with ARM compatibility mode. // with ARM compatibility mode.
if (variant.flavorName.contains("X86")) { if (variant.flavorName.contains("x86")) {
versionCode = versionCode + 1 versionCode = versionCode + 1
}// else variant.flavorName.contains("Arm")) use generated version code }// else variant.flavorName.contains("Arm")) use generated version code

View File

@ -4,7 +4,6 @@
import datetime import datetime
import json import json
import os
import taskcluster import taskcluster
@ -134,8 +133,8 @@ class TaskBuilder(object):
"metadata": { "metadata": {
"name": name, "name": name,
"description": description, "description": description,
"owner": "android-components-team@mozilla.com", "owner": self.owner,
"source": "https://github.com/mozilla-mobile/fenix/tree/master/automation/taskcluster" "source": self.source
} }
} }