Skip to content

Commit d0575ff

Browse files
committed
Add ccache
1 parent 8b5503d commit d0575ff

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/IntegrationTests.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ jobs:
4848
fetch-depth: 0
4949
submodules: 'true'
5050

51+
- name: Setup Ccache
52+
uses: hendrikmuhs/ccache-action@main
53+
with:
54+
key: ${{ github.job }}
55+
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' }}
56+
5157
- name: Checkout DuckDB to version
5258
if: ${{ matrix.duckdb_version != '<submodule_version>'}}
5359
run: |
@@ -74,9 +80,9 @@ jobs:
7480
7581
- name: Build
7682
shell: bash
77-
run: make reldebug
83+
run: make
7884

79-
- name: Start test server & run tests
85+
- name: Start test server
8086
shell: bash
8187
run: |
8288
sudo ./scripts/install_s3_test_server.sh
@@ -85,4 +91,7 @@ jobs:
8591
source ./scripts/set_s3_test_server_variables.sh
8692
sleep 60
8793
88-
./build/reldebug/test/unittest '*'
94+
- name: Run tests
95+
shell: bash
96+
run: |
97+
make test

0 commit comments

Comments
 (0)