Skip to content

Commit 7526c35

Browse files
committed
speedup the "ATM - Check query suite" CI job
1 parent 4ff823c commit 7526c35

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/atm-check-query-suite.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
atm-check-query-suite:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-latest-xl
1717

1818
steps:
1919
- uses: actions/checkout@v3
@@ -23,6 +23,12 @@ jobs:
2323
with:
2424
channel: release
2525

26+
- name: Cache compilation cache
27+
id: query-cache
28+
uses: ./.github/actions/cache-query-compilation
29+
with:
30+
key: atm-suite
31+
2632
- name: Install ATM model
2733
run: |
2834
set -exu
@@ -54,6 +60,7 @@ jobs:
5460
--output "${SARIF_PATH}" \
5561
--sarif-group-rules-by-pack \
5662
-vv \
63+
--compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \
5764
-- \
5865
"${DB_PATH}" \
5966
"${QUERY_PACK}/${QUERY_SUITE}"

0 commit comments

Comments
 (0)