You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2024/03/14 07:06:26 UTC

(camel-quarkus) 02/02: Cache PDFBox font cache on Windows to speed up the build

This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 8a64fd1b416481b6d4b77646e3df6a86921c514c
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Mar 13 14:13:13 2024 +0000

    Cache PDFBox font cache on Windows to speed up the build
    
    Fixes #5776
---
 .github/workflows/ci-build.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 81ed419604..cbbfe46526 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -464,6 +464,12 @@ jobs:
         run: |
           tar -xzf ../maven-repo.tgz -C ~
           rm -f ../maven-repo.tgz
+      - name: PDFBox font cache
+        uses: actions/cache@v4
+        if: runner.os == 'Windows'
+        with:
+          path: ~/.pdfbox.cache
+          key: ${{ runner.os }}-pdfbox-cache
       - name: cd integration-tests && mvn clean verify
         shell: bash
         run: |