File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -93,13 +93,18 @@ jobs:
93
93
- uses : actions/checkout@v3
94
94
- name : Fetch CodeQL
95
95
uses : ./.github/actions/fetch-codeql
96
+ - name : Cache compilation cache
97
+ id : query-cache
98
+ uses : ./.github/actions/cache-query-compilation
99
+ with :
100
+ key : ruby-build
96
101
- name : Build Query Pack
97
102
run : |
98
- codeql pack create ../shared/ssa --output target/packs
99
- codeql pack create ../misc/suite-helpers --output target/packs
100
- codeql pack create ../shared/regex --output target/packs
101
- codeql pack create ql/lib --output target/packs
102
- codeql pack create ql/src --output target/packs
103
+ codeql pack create ../shared/ssa --output target/packs --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
104
+ codeql pack create ../misc/suite-helpers --output target/packs --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
105
+ codeql pack create ../shared/regex --output target/packs --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
106
+ codeql pack create ql/lib --output target/packs --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
107
+ codeql pack create ql/src --output target/packs --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
103
108
PACK_FOLDER=$(readlink -f target/packs/codeql/ruby-queries/*)
104
109
codeql generate query-help --format=sarifv2.1.0 --output="${PACK_FOLDER}/rules.sarif" ql/src
105
110
(cd ql/src; find queries \( -name '*.qhelp' -o -name '*.rb' -o -name '*.erb' \) -exec bash -c 'mkdir -p "'"${PACK_FOLDER}"'/$(dirname "{}")"' \; -exec cp "{}" "${PACK_FOLDER}/{}" \;)
You can’t perform that action at this time.
0 commit comments