We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc8c53c commit af80a22Copy full SHA for af80a22
1 file changed
.github/workflows/build-vad.yml
@@ -31,10 +31,17 @@ jobs:
31
- name: Checkout
32
uses: actions/checkout@v6
33
34
+ - name: ccache
35
+ uses: ggml-org/ccache-action@v1.2.21
36
+ with:
37
+ key: vad-ubuntu-latest
38
+ evict-old-files: 1d
39
+ save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
40
+
41
- name: Build
42
shell: bash
43
run: |
- cmake -B build
44
+ cmake -B build -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
45
cmake --build build --config Release
46
47
- name: Test
0 commit comments