Skip to content

Commit 86c3fcc

Browse files
committed
Test caching
1 parent e736ca4 commit 86c3fcc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build-and-deploy-documentation.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ jobs:
1515
run: |
1616
sudo apt install bison flex # Needed by Doxygen
1717
pip3 install jinja2 # Needed by M.css
18+
- name: Cache Doxygen and M.CSS externals
19+
uses: actions/cache@v4
20+
with:
21+
path: |
22+
${{ github.workspace }}/build/external/doxygen/
23+
${{ github.workspace }}/build/external/mcss/
24+
key: |
25+
${{ hashFiles('${{ github.workspace }}/cmake/ExternalDoxygen.cmake') }}
26+
${{ hashFiles('${{ github.workspace }}/cmake/ExternalMCSS.cmake') }}
1827
- name: Build docs
1928
run: |
2029
mkdir build

0 commit comments

Comments
 (0)