blob: 3e1d91305c709cf13338174195dcec0f070f0676 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# 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/.
---
job-defaults:
# Run only on try and code-review tasks
# to avoid running Coverity SA on the whole codebase
run-on-projects: []
platform: linux64/opt
worker-type:
by-platform:
linux64.*: b-linux
worker:
docker-image: {in-tree: debian10-amd64-build}
max-run-time: 5400
treeherder:
kind: other
tier: 2
run:
using: run-task
tooltool-downloads: public
fetches:
toolchain:
- linux64-clang-10
- linux64-rust
- linux64-cbindgen
- linux64-nasm
- linux64-node
- linux64-lucetc
- wasi-sysroot
when:
# Extension list from https://hg.mozilla.org/mozilla-central/file/default/python/mozbuild/mozbuild/mach_commands.py#l1664
files-changed:
- '**/*.c'
- '**/*.cpp'
- '**/*.cc'
- '**/*.cxx'
- '**/*.m'
- '**/*.mm'
- '**/*.h'
- '**/*.hh'
- '**/*.hpp'
- '**/*.hxx'
coverity:
description: Run static-analysis (Coverity) on C/C++ patches
attributes:
code-review: true
treeherder:
symbol: cpp(coverity)
run:
cwd: '{checkout}'
command: >-
source taskcluster/scripts/misc/source-test-clang-setup.sh &&
./mach --log-no-times static-analysis check-coverity --outgoing --output $HOME/coverity.json
scopes:
- secrets:get:project/relman/coverity
worker:
artifacts:
- type: file
name: public/code-review/coverity.json
path: /builds/worker/coverity.json
- type: file
name: public/code-review/coverity-orig.json
path: /builds/worker/workspace/coverity/cov-results.json
coverity-full-analysis:
description: Run Coverity based static-analysis on the entire Gecko repo
treeherder:
symbol: Static-Analysis(coverity-full-analysis)
worker-type:
by-platform:
linux64.*: b-linux-xlarge
run-on-projects: []
run:
cwd: '{checkout}'
command: >-
source taskcluster/scripts/misc/source-test-clang-setup.sh &&
./mach --log-no-times static-analysis check-coverity --full-build
scopes:
- secrets:get:project/relman/coverity
worker:
max-run-time: 14400
when:
files-changed:
- '**/*.c'
- '**/*.cpp'
- '**/*.cc'
- '**/*.cxx'
- '**/*.m'
- '**/*.mm'
- '**/*.h'
- '**/*.hh'
- '**/*.hpp'
- '**/*.hxx'
- '**/*.py'
- '**/*.js'
|