File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 3636 for pack in modelbuilding src; do
3737 codeql pack install --mode verify -- "${pack}"
3838 done
39+
40+ - name : Cache compilation cache
41+ id : query-cache
42+ uses : ./.github/actions/cache-query-compilation
43+ with :
44+ key : js-ml-compilation
3945
4046 - name : Check QL compilation
4147 run : |
4450 --ram 5120 \
4551 --additional-packs "${{ github.workspace }}" \
4652 --threads=0 \
53+ --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \
4754 -- \
4855 lib modelbuilding src
4956
@@ -58,11 +65,18 @@ jobs:
5865 - name : Install pack dependencies
5966 run : codeql pack install -- test
6067
68+ - name : Cache compilation cache
69+ id : query-cache
70+ uses : ./.github/actions/cache-query-compilation
71+ with :
72+ key : js-ml-tests
73+
6174 - name : Run QL tests
6275 run : |
6376 codeql test run \
6477 --threads=0 \
6578 --ram 5120 \
6679 --additional-packs "${{ github.workspace }}" \
80+ --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \
6781 -- \
6882 test
You can’t perform that action at this time.
0 commit comments