File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ For more details on CodeQL customization packs see the section [CodeQL customiza
18
18
The CodeQL bundle application can be installed using ` pip ` with the command:
19
19
20
20
``` bash
21
- python3.11 -m pip install https://github.com/rvermeulen/codeql-bundle/releases/download/v0.1.5 /codeql_bundle-0.1.5 -py3-none-any.whl
21
+ python3.11 -m pip install https://github.com/rvermeulen/codeql-bundle/releases/download/v0.1.8 /codeql_bundle-0.1.8 -py3-none-any.whl
22
22
```
23
23
24
24
## Usage
@@ -31,7 +31,14 @@ You can see the packs available in your workspace by running `codeql pack ls --
31
31
With both a CodeQL bundle and a CodeQL workspace you can create a bundle with the command:
32
32
33
33
``` bash
34
- codeql-bundle --bundle < path-to-bundle> --output codeql-custom-bundle.tar.gz --workspace < path-to-workspace> --log INFO
34
+ codeql-bundle --bundle < path-to-bundle> --output codeql-custom-bundle.tar.gz --workspace < path-to-workspace> --log INFO < packs>
35
+ ```
36
+
37
+ If the source bundle is the platform agnostic bundle then you can create platform specific bundles to reduce the size of the used bundle(s).
38
+ The following example creates platform specific bundles for all the currently supported platforms.
39
+
40
+ ``` bash
41
+ codeql-bundle --bundle < path-to-platform-agnostic-bundle> --output < path-to-bundles-dir> --workspace < path-to-workspace> --log INFO -p linux64 -p osx64 -p win64 < packs>
35
42
```
36
43
37
44
## CodeQL customization packs
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " codeql-bundle"
3
- version = " 0.1.7 "
3
+ version = " 0.1.8 "
4
4
description = " Tool to create custom CodeQL bundles"
5
5
authors = [
" Remco Vermeulen <[email protected] >" ]
6
6
readme = " README.md"
You can’t perform that action at this time.
0 commit comments