Bug 1328459 - Give the clang-tidy jobs names so that their artifacts can be looked up in the index; r=mshal
I'm using static-analysis as the name of the product.
This commit is contained in:
@@ -25,6 +25,9 @@ linux64-clang/opt:
|
|||||||
|
|
||||||
linux64-clang-tidy/opt:
|
linux64-clang-tidy/opt:
|
||||||
description: "Clang-tidy build"
|
description: "Clang-tidy build"
|
||||||
|
index:
|
||||||
|
product: static-analysis
|
||||||
|
job-name: linux64-clang-tidy
|
||||||
treeherder:
|
treeherder:
|
||||||
kind: build
|
kind: build
|
||||||
platform: linux64/opt
|
platform: linux64/opt
|
||||||
|
|||||||
@@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
macosx64-clang-tidy/opt:
|
macosx64-clang-tidy/opt:
|
||||||
description: "Clang-tidy build"
|
description: "Clang-tidy build"
|
||||||
|
index:
|
||||||
|
product: static-analysis
|
||||||
|
job-name: macosx64-clang-tidy
|
||||||
treeherder:
|
treeherder:
|
||||||
kind: build
|
kind: build
|
||||||
platform: osx-10-10/opt
|
platform: osx-10-10/opt
|
||||||
|
|||||||
@@ -44,6 +44,9 @@ win64-clang-cl/opt:
|
|||||||
|
|
||||||
win32-clang-tidy/opt:
|
win32-clang-tidy/opt:
|
||||||
description: "Clang-tidy toolchain build"
|
description: "Clang-tidy toolchain build"
|
||||||
|
index:
|
||||||
|
product: static-analysis
|
||||||
|
job-name: win32-clang-tidy
|
||||||
treeherder:
|
treeherder:
|
||||||
kind: build
|
kind: build
|
||||||
platform: windows-2012-32/opt
|
platform: windows-2012-32/opt
|
||||||
@@ -64,6 +67,9 @@ win32-clang-tidy/opt:
|
|||||||
|
|
||||||
win64-clang-tidy/opt:
|
win64-clang-tidy/opt:
|
||||||
description: "Clang-tidy toolchain build"
|
description: "Clang-tidy toolchain build"
|
||||||
|
index:
|
||||||
|
product: static-analysis
|
||||||
|
job-name: win64-clang-tidy
|
||||||
treeherder:
|
treeherder:
|
||||||
kind: build
|
kind: build
|
||||||
platform: windows-2012-64/opt
|
platform: windows-2012-64/opt
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ JOB_NAME_WHITELIST = set([
|
|||||||
'linux64-asan-debug',
|
'linux64-asan-debug',
|
||||||
'linux64-asan-opt',
|
'linux64-asan-opt',
|
||||||
'linux64-ccov-opt',
|
'linux64-ccov-opt',
|
||||||
|
'linux64-clang-tidy',
|
||||||
'linux64-debug',
|
'linux64-debug',
|
||||||
'linux64-jsdcov-opt',
|
'linux64-jsdcov-opt',
|
||||||
'linux64-l10n-opt',
|
'linux64-l10n-opt',
|
||||||
@@ -44,6 +45,7 @@ JOB_NAME_WHITELIST = set([
|
|||||||
'linux-debug',
|
'linux-debug',
|
||||||
'linux-opt',
|
'linux-opt',
|
||||||
'linux-pgo',
|
'linux-pgo',
|
||||||
|
'macosx64-clang-tidy',
|
||||||
'macosx64-debug',
|
'macosx64-debug',
|
||||||
'macosx64-opt',
|
'macosx64-opt',
|
||||||
'macosx64-st-an-opt',
|
'macosx64-st-an-opt',
|
||||||
@@ -65,11 +67,13 @@ JOB_NAME_WHITELIST = set([
|
|||||||
'sm-tsan-opt',
|
'sm-tsan-opt',
|
||||||
'win32-st-an-debug',
|
'win32-st-an-debug',
|
||||||
'win32-st-an-opt',
|
'win32-st-an-opt',
|
||||||
|
'win32-clang-tidy',
|
||||||
'win32-debug',
|
'win32-debug',
|
||||||
'win32-opt',
|
'win32-opt',
|
||||||
'win32-pgo',
|
'win32-pgo',
|
||||||
'win64-st-an-debug',
|
'win64-st-an-debug',
|
||||||
'win64-st-an-opt',
|
'win64-st-an-opt',
|
||||||
|
'win64-clang-tidy',
|
||||||
'win64-debug',
|
'win64-debug',
|
||||||
'win64-opt',
|
'win64-opt',
|
||||||
'win64-pgo',
|
'win64-pgo',
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ task_description_schema = Schema({
|
|||||||
# if omitted, the build will not be indexed.
|
# if omitted, the build will not be indexed.
|
||||||
Optional('index'): {
|
Optional('index'): {
|
||||||
# the name of the product this build produces
|
# the name of the product this build produces
|
||||||
'product': Any('firefox', 'mobile'),
|
'product': Any('firefox', 'mobile', 'static-analysis'),
|
||||||
|
|
||||||
# the names to use for this job in the TaskCluster index
|
# the names to use for this job in the TaskCluster index
|
||||||
'job-name': basestring,
|
'job-name': basestring,
|
||||||
|
|||||||
Reference in New Issue
Block a user