We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff823c commit 7526c35Copy full SHA for 7526c35
.github/workflows/atm-check-query-suite.yml
@@ -13,7 +13,7 @@ on:
13
14
jobs:
15
atm-check-query-suite:
16
- runs-on: ubuntu-latest
+ runs-on: ubuntu-latest-xl
17
18
steps:
19
- uses: actions/checkout@v3
@@ -23,6 +23,12 @@ jobs:
23
with:
24
channel: release
25
26
+ - name: Cache compilation cache
27
+ id: query-cache
28
+ uses: ./.github/actions/cache-query-compilation
29
+ with:
30
+ key: atm-suite
31
+
32
- name: Install ATM model
33
run: |
34
set -exu
@@ -54,6 +60,7 @@ jobs:
54
60
--output "${SARIF_PATH}" \
55
61
--sarif-group-rules-by-pack \
56
62
-vv \
63
+ --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \
57
64
-- \
58
65
"${DB_PATH}" \
59
66
"${QUERY_PACK}/${QUERY_SUITE}"
0 commit comments