mirror of
https://github.com/github/codeql.git
synced 2026-02-08 11:11:06 +01:00
95 lines
5.7 KiB
ReStructuredText
95 lines
5.7 KiB
ReStructuredText
.. _creating-and-working-with-codeql-packs:
|
|
|
|
Creating and working with CodeQL packs
|
|
======================================
|
|
|
|
You can use CodeQL packs to create, share, depend on, and run CodeQL queries and libraries.
|
|
|
|
.. include:: ../reusables/beta-note-package-management.rst
|
|
|
|
About CodeQL packs and the CodeQL CLI
|
|
-------------------------------------
|
|
|
|
With CodeQL packs and the package management commands in the CodeQL CLI, you can publish your custom queries and integrate them into your codebase analysis.
|
|
|
|
There are two types of CodeQL packs: query packs and library packs.
|
|
|
|
* Query packs are designed to be run. When a query pack is published, the bundle includes all the transitive dependencies and pre-compiled representations of each query, in addition to the query sources. This ensures consistent and efficient execution of the queries in the pack.
|
|
* Library packs are designed to be used by query packs (or other library packs) and do not contain queries themselves. The libraries are not compiled separately.
|
|
|
|
You can use the ``pack`` command in the CodeQL CLI to create CodeQL packs, add dependencies to packs, and install or update dependencies. You can also publish and download CodeQL packs using the ``pack`` command. For more information, see ":doc:`Publishing and using CodeQL packs <publishing-and-using-codeql-packs>`."
|
|
|
|
For more information about compatibility between published query packs and different CodeQL releases, see ":ref:`About CodeQL pack compatibility <about-codeql-pack-compatibility>`."
|
|
|
|
Creating a CodeQL pack
|
|
----------------------
|
|
You can create a CodeQL pack by running the following command from the checkout root of your project:
|
|
|
|
::
|
|
|
|
codeql pack init <scope>/<pack>
|
|
|
|
You must specify:
|
|
|
|
- ``<scope>``: the name of the GitHub organization or user account that you will publish to.
|
|
- ``<pack>``: the name for the pack that you are creating.
|
|
|
|
The ``codeql pack init`` command creates the directory structure and configuration files for a CodeQL pack. By default, the command creates a query pack. If you want to create a library pack, you must edit the ``qlpack.yml`` file to explicitly declare the file as a library pack by including the ``library:true`` property.
|
|
|
|
Modifying an existing legacy QL pack to create a CodeQL pack
|
|
------------------------------------------------------------
|
|
|
|
If you already have a ``qlpack.yml`` file, you can edit it manually to convert it into a CodeQL pack.
|
|
|
|
#. Edit the ``name`` property so that it matches the format ``<scope>/<name>``, where ``<scope>`` is the name of the GitHub organization or user account that you will publish to.
|
|
#. In the ``qlpack.yml`` file, include a ``version`` property with a semver identifier, as well as an optional ``dependencies`` block.
|
|
#. Migrate the list of dependencies in ``libraryPathDependencies`` to the ``dependencies`` block. Specify the version range for each dependency. If the range is unimportant, or you are unsure of compatibility, you can specify ``"*"``, which indicates that any version is acceptable and will default to the latest version when you run ``codeql pack install``.
|
|
|
|
For more information about the properties, see ":ref:`About CodeQL packs <about-codeql-packs>`."
|
|
|
|
.. _adding-and-installing-dependencies:
|
|
|
|
Adding and installing dependencies to a CodeQL pack
|
|
---------------------------------------------------
|
|
You can add dependencies on CodeQL packs using the command ``codeql pack add``. You must specify the scope, name, and (optionally) a compatible version range.
|
|
|
|
::
|
|
|
|
codeql pack add <scope>/<name>@x.x.x <scope>/<other-name>
|
|
|
|
If you don't specify a version range, the latest version will be added. Otherwise, the latest version that satisfies the requested range will be added.
|
|
|
|
This command updates the ``qlpack.yml`` file with the requested dependencies and downloads them into the package cache. Please note that this command will reformat the file and remove all comments.
|
|
|
|
You can also manually edit the ``qlpack.yml`` file to include dependencies and install the dependencies with the command:
|
|
|
|
::
|
|
|
|
codeql pack install
|
|
|
|
This command downloads all dependencies to the shared cache on the local disk.
|
|
|
|
.. pull-quote::
|
|
|
|
Note
|
|
|
|
Running the ``codeql pack add`` and ``codeql pack install`` commands will generate or update the ``codeql-pack.lock.yml`` file. This file should be checked-in to version control. The ``codeql-pack.lock.yml`` file contains the precise version numbers used by the pack.
|
|
For more information, see ":ref:`About codeql-pack.lock.yml files <about-codeql-pack-lock>`."
|
|
|
|
.. pull-quote::
|
|
|
|
Note
|
|
|
|
By default ``codeql pack install`` will install dependencies from the Container registry on GitHub.com.
|
|
You can install dependencies from a GitHub Enterprise Server Container registry by creating a ``qlconfig.yml`` file.
|
|
For more information, see ":doc:`Publishing and using CodeQL packs <publishing-and-using-codeql-packs>`."
|
|
|
|
Customizing a downloaded CodeQL pack
|
|
---------------------------------------------------
|
|
|
|
The recommended way to experiment with changes to a pack is to clone the repository containing its source code.
|
|
|
|
If no source respository is available and you need to base modifications on a pack downloaded from the Container registry, be aware that these packs are not intended to be modified or customized after downloading, and their format may change in the future without much notice. We recommend taking the following steps after downloading a pack if you need to modify the content:
|
|
|
|
- Change the pack *name* in ``qlpack.yml`` so you avoid confusion with results from the unmodified pack.
|
|
- Remove all files named ``*.qlx`` anywhere in the unpacked directory structure. These files contain precompiled versions of the queries, and in some situations CodeQL will use them in preference to the QL source you have modified. |