diff options
Diffstat (limited to 'taskcluster/ci/toolchain/clang-tidy.yml')
-rw-r--r-- | taskcluster/ci/toolchain/clang-tidy.yml | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/taskcluster/ci/toolchain/clang-tidy.yml b/taskcluster/ci/toolchain/clang-tidy.yml new file mode 100644 index 0000000000..f4be606c2c --- /dev/null +++ b/taskcluster/ci/toolchain/clang-tidy.yml @@ -0,0 +1,125 @@ +# 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: + description: "Clang-tidy build" + attributes: + local-toolchain: true + index: + product: static-analysis + worker-type: b-linux-large + worker: + max-run-time: 3600 + run: + toolchain-artifact: public/build/clang-tidy.tar.zst + resources: + - 'build/clang-plugin/**/*.cpp' + - 'build/clang-plugin/**/*.h' + - 'build/clang-plugin/*.inc' + - 'build/clang-plugin/*.py' + - 'build/clang-plugin/moz.build' + - 'build/clang-plugin/Makefile.in' + - 'build/build-clang/build-clang.py' + fetches: + fetch: + - clang-11 + +linux64-clang-tidy: + index: + job-name: linux64-clang-tidy + treeherder: + symbol: TL(clang-tidy) + run: + script: build-clang.sh + arguments: + - 'build/build-clang/clang-tidy-linux64.json' + resources: + - 'build/build-clang/clang-tidy-linux64.json' + run-on-projects: + - trunk + fetches: + toolchain: + - linux64-binutils + - linux64-gcc-7 + +macosx64-clang-tidy: + index: + job-name: macosx64-clang-tidy + treeherder: + symbol: TM(clang-tidy) + worker-type: b-linux-large + worker: + env: + TOOLTOOL_MANIFEST: "browser/config/tooltool-manifests/macosx64/cross-releng.manifest" + run: + using: toolchain-script + script: build-clang.sh + tooltool-downloads: internal + arguments: + - 'build/build-clang/clang-tidy-macosx64.json' + resources: + - 'build/build-clang/clang-tidy-macosx64.json' + - 'taskcluster/scripts/misc/tooltool-download.sh' + run-on-projects: + - trunk + fetches: + toolchain: + - linux64-binutils + - linux64-cctools-port-clang-11 + - linux64-clang-11-macosx-cross + - linux64-gcc-7 + - linux64-node + +win64-clang-tidy: + description: "Clang-tidy toolchain build" + index: + job-name: win64-clang-tidy + treeherder: + symbol: TW64(clang-tidy) + tier: 2 + worker-type: b-win2012 + worker: + max-run-time: 7200 + env: + TOOLTOOL_MANIFEST: "browser/config/tooltool-manifests/win64/vs2017.manifest" + run: + script: build-clang.sh + arguments: + - 'build/build-clang/clang-tidy-win64.json' + resources: + - 'build/build-clang/clang-tidy-win64.json' + tooltool-downloads: internal + run-on-projects: + - trunk + fetches: + fetch: + - cmake + - ninja + +linux64-clang-tidy-external: + attributes: + local-toolchain: false + index: + job-name: linux64-clang-tidy-external + treeherder: + symbol: TL(clang-tidy-e) + worker: + artifacts: + - name: project/civet/clang-tidy.tar.zst + path: /builds/worker/private-artifacts/clang-tidy.tar.zst + type: file + run: + toolchain-artifact: project/civet/clang-tidy.tar.zst + script: build-clang-tidy-external.sh + arguments: + - 'build/build-clang/clang-tidy-external-linux64.json' + resources: + - 'build/build-clang/clang-tidy-external-linux64.json' + run-on-projects: [] + fetches: + fetch: + - civet-source + toolchain: + - linux64-binutils + - linux64-gcc-7 |