Skip to content

Commit

Permalink
Bug 1600904 - [lint.yaml] Fix Python 3 related error and the issues t…
Browse files Browse the repository at this point in the history
…hat snuck in because of it, r=sylvestre

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

--HG--
extra : moz-landing-system : lando
  • Loading branch information
ahal committed Dec 10, 2019
1 parent e8d0d59 commit 4e51876
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion taskcluster/ci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -448,4 +448,3 @@ mac-notarization:
production: security/mac/hardenedruntime/production.entitlements.xml
default: security/mac/hardenedruntime/developer.entitlements.xml
default: ''

4 changes: 2 additions & 2 deletions taskcluster/ci/fetch/toolchains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions taskcluster/ci/iris/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion taskcluster/ci/source-test/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,4 +322,3 @@ condprof:
files-changed:
- 'testing/condprofile/condprof**'
- 'testing/condprofile/setup.py'

8 changes: 4 additions & 4 deletions taskcluster/ci/test/raptor-refbrow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions taskcluster/ci/test/raptor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion taskcluster/ci/test/talos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions tools/lint/yamllint_/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 4e51876

Please sign in to comment.