diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /taskcluster/ci/source-test/infer.yml | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'taskcluster/ci/source-test/infer.yml')
-rw-r--r-- | taskcluster/ci/source-test/infer.yml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/taskcluster/ci/source-test/infer.yml b/taskcluster/ci/source-test/infer.yml new file mode 100644 index 0000000000..17924c190d --- /dev/null +++ b/taskcluster/ci/source-test/infer.yml @@ -0,0 +1,53 @@ +# 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 infer on the whole codebase + run-on-projects: [] + platform: linux64/opt + attributes: + code-review: true + worker-type: + by-platform: + linux64.*: t-linux-xlarge-source + worker: + docker-image: {in-tree: android-build} + max-run-time: 5400 + treeherder: + kind: other + tier: 2 + run: + using: run-task + tooltool-downloads: public + fetches: + toolchain: + - linux64-infer + - linux64-android-sdk-linux-repack + - linux64-android-ndk-linux-repack + - linux64-rust-android + - linux64-clang + - linux64-cbindgen + - linux64-nasm + - linux64-node + when: + files-changed: + - 'mobile/**/*.java' + +infer: + description: Run static-analysis (infer) on Java patches + treeherder: + symbol: java(infer) + run: + cwd: '{checkout}' + command: >- + source taskcluster/scripts/misc/source-test-infer-setup.sh && + ./mach --log-no-times configure && + ./mach --log-no-times static-analysis check-java --outgoing --output $HOME/infer.json + + worker: + artifacts: + - type: file + name: public/code-review/infer.json + path: /builds/worker/infer.json |