mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
Bug 1600904 - [lint.yaml] Fix Python 3 related error and the issues that snuck in because of it, r=sylvestre
Differential Revision: https://phabricator.services.mozilla.com/D55798 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
e8d0d59593
commit
4e51876f56
@ -14,11 +14,11 @@ jobs:
|
||||
- mozilla-beta
|
||||
when:
|
||||
by-project:
|
||||
mozilla-beta:
|
||||
- {weekday: 'Monday', hour: 4, minute: 0}
|
||||
- {weekday: 'Wednesday', hour: 4, minute: 0}
|
||||
- {weekday: 'Friday', hour: 4, minute: 0}
|
||||
# No default
|
||||
mozilla-beta:
|
||||
- {weekday: 'Monday', hour: 4, minute: 0}
|
||||
- {weekday: 'Wednesday', hour: 4, minute: 0}
|
||||
- {weekday: 'Friday', hour: 4, minute: 0}
|
||||
|
||||
- name: nightly-desktop
|
||||
job:
|
||||
|
@ -448,4 +448,3 @@ mac-notarization:
|
||||
production: security/mac/hardenedruntime/production.entitlements.xml
|
||||
default: security/mac/hardenedruntime/developer.entitlements.xml
|
||||
default: ''
|
||||
|
||||
|
@ -119,7 +119,7 @@ iris-2.0:
|
||||
fetch:
|
||||
type: git
|
||||
repo: https://github.com/mozilla/iris_firefox
|
||||
revision: 32c1a0119714adc7fcc0541d727c5b6795e7f18c
|
||||
revision: 32c1a0119714adc7fcc0541d727c5b6795e7f18c
|
||||
|
||||
isl-0.15:
|
||||
description: ISL 0.15 source code
|
||||
@ -222,7 +222,7 @@ wix-3.14.0:
|
||||
fetch:
|
||||
type: static-url
|
||||
# This is a dev version of the toolset, upstream will purge over time...
|
||||
url: http://wixtoolset.org/downloads/v3.14.0.2812/wix314-binaries.zip
|
||||
url: http://wixtoolset.org/downloads/v3.14.0.2812/wix314-binaries.zip
|
||||
sha256: 923892298f37514622c58cbbd9c2cadf2822d9bb53df8ee83aaeb05280777611
|
||||
size: 34664320
|
||||
|
||||
|
@ -76,8 +76,8 @@ job-defaults:
|
||||
tooltool-downloads: public
|
||||
run-on-projects:
|
||||
by-name:
|
||||
nightly.*: [try, mozilla-central]
|
||||
default: [try]
|
||||
nightly.*: [try, mozilla-central]
|
||||
default: [try]
|
||||
treeherder:
|
||||
kind: test
|
||||
platform:
|
||||
|
@ -322,4 +322,3 @@ condprof:
|
||||
files-changed:
|
||||
- 'testing/condprofile/condprof**'
|
||||
- 'testing/condprofile/setup.py'
|
||||
|
||||
|
@ -11,11 +11,11 @@ job-defaults:
|
||||
target:
|
||||
by-test-platform:
|
||||
android-hw.*-aarch64.*/.*:
|
||||
index: project.mobile.reference-browser.v3.raptor.latest
|
||||
name: target.arm64-v8a.apk
|
||||
index: project.mobile.reference-browser.v3.raptor.latest
|
||||
name: target.arm64-v8a.apk
|
||||
default:
|
||||
index: project.mobile.reference-browser.v3.raptor.latest
|
||||
name: target.armeabi-v7a.apk
|
||||
index: project.mobile.reference-browser.v3.raptor.latest
|
||||
name: target.armeabi-v7a.apk
|
||||
virtualization: hardware
|
||||
mozharness:
|
||||
script: raptor_script.py
|
||||
|
@ -57,7 +57,7 @@ raptor-tp6-1-firefox:
|
||||
variants: ["fission"]
|
||||
try-name: raptor-tp6-1-firefox
|
||||
treeherder-symbol: Rap(tp6-1)
|
||||
condprof: True
|
||||
condprof: true
|
||||
mozharness:
|
||||
extra-options:
|
||||
- --test=raptor-tp6-1
|
||||
@ -697,7 +697,7 @@ raptor-tp6-1-firefox-cold:
|
||||
description: "Raptor tp6-1 cold page-load on Firefox"
|
||||
try-name: raptor-tp6-1-firefox-cold
|
||||
treeherder-symbol: Rap(tp6-c-1)
|
||||
condprof: True
|
||||
condprof: true
|
||||
mozharness:
|
||||
extra-options:
|
||||
- --test=raptor-tp6-1-cold
|
||||
@ -1019,7 +1019,7 @@ browsertime-tp6:
|
||||
treeherder-symbol: Btime(tp6)
|
||||
max-run-time: 4000
|
||||
tier: 3
|
||||
condprof: True
|
||||
condprof: true
|
||||
run-visual-metrics:
|
||||
by-app:
|
||||
chrome: false
|
||||
|
@ -413,7 +413,6 @@ talos-motionmark-profiling:
|
||||
description: "Talos motionmark with gecko profiling"
|
||||
try-name: motionmark-prof
|
||||
treeherder-symbol: T-Prof(mm)
|
||||
tier: 2
|
||||
run-on-projects: ['mozilla-central', 'try']
|
||||
max-run-time: 3600
|
||||
tier:
|
||||
|
@ -32,6 +32,7 @@ class YAMLLintProcess(ProcessHandlerMixin):
|
||||
def __init__(self, config, *args, **kwargs):
|
||||
self.config = config
|
||||
kwargs['processOutputLine'] = [self.process_line]
|
||||
kwargs['universal_newlines'] = True
|
||||
ProcessHandlerMixin.__init__(self, *args, **kwargs)
|
||||
|
||||
def process_line(self, line):
|
||||
|
Loading…
Reference in New Issue
Block a user