1 | ## @file codeqlcli_ext_dep.yaml
|
---|
2 | #
|
---|
3 | # Downloads the CodeQL Command-Line Interface (CLI) application that support Linux, Windows, and Mac OS X.
|
---|
4 | #
|
---|
5 | # This download is very large but conveniently provides support for all operating systems. Use it if you
|
---|
6 | # need CodeQL CLI support without concern for the host operating system.
|
---|
7 | #
|
---|
8 | # In an environment where a platform might build in different operating systems, it is recommended to set
|
---|
9 | # the scope for the appropriate CodeQL external dependency based on the host operating system being used.
|
---|
10 | #
|
---|
11 | # ****VERSION UPDATE INSTRUCTIONS****
|
---|
12 | #
|
---|
13 | # When updating the CodeQL CLI used here, update the corresponding codeql/cpp-queries version in CodeQlQueries.qls.
|
---|
14 | # Visit the `qlpack.yml` in the release branch for the CodeQL CLI to get the version to use there. For example, the
|
---|
15 | # CodeQL CLI 2.18.1 file is https://github.com/github/codeql/blob/codeql-cli-2.18.1/cpp/ql/src/qlpack.yml and the
|
---|
16 | # pack version there is 1.1.0.
|
---|
17 | #
|
---|
18 | # Copyright (c) Microsoft Corporation. All rights reserved.
|
---|
19 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
20 | ##
|
---|
21 |
|
---|
22 | {
|
---|
23 | "scope": "codeql-ext-dep",
|
---|
24 | "type": "web",
|
---|
25 | "name": "codeql_cli",
|
---|
26 | "source": "https://github.com/github/codeql-cli-binaries/releases/download/v2.18.1/codeql.zip",
|
---|
27 | "version": "2.18.1",
|
---|
28 | "sha256": "815f71c1a46e76f9dafdec26c2a4bab7ea4019a3773e91e39253e2d21cf792a2",
|
---|
29 | "compression_type": "zip",
|
---|
30 | "internal_path": "/codeql/",
|
---|
31 | "flags": ["set_shell_var", ],
|
---|
32 | "var_name": "STUART_CODEQL_PATH"
|
---|
33 | }
|
---|