From 87e4846f71293d68a3f67e6a83fa4d0f2186360f Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 15 Dec 2025 17:05:58 +0500 Subject: [PATCH] ci.yml - use ccache for examples too --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a8a4d962f..6fcaf11951 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -208,7 +208,9 @@ jobs: run: | cd src/examples mkdir build && cd build - cmake .. -DCMAKE_BUILD_TYPE=Release + cmake .. -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_C_COMPILER_LAUNCHER=ccache \ + -DCMAKE_CXX_COMPILER_LAUNCHER=ccache cmake --build . ./IfcParseExamples "../IfcParseExamples_test.ifc" ./IfcOpenHouse