From 8048e32fcfde16200bb1ff46f938a54b16f730a1 Mon Sep 17 00:00:00 2001 From: AdamN <7974720+anr2me@users.noreply.github.com> Date: Fri, 31 May 2024 03:20:04 +0700 Subject: [PATCH] Some missing env vars for ccache --- .github/workflows/manual_generate_ipa.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/manual_generate_ipa.yml b/.github/workflows/manual_generate_ipa.yml index 4ca750d03e..ddbc72493b 100644 --- a/.github/workflows/manual_generate_ipa.yml +++ b/.github/workflows/manual_generate_ipa.yml @@ -66,8 +66,13 @@ jobs: env: CC: clang CXX: clang++ + USE_CCACHE: 1 run: | export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + export CCACHE_SLOPPINESS=pch_defines,clang_index_store,ivfsoverlay,include_file_ctime,include_file_mtime,modules,system_headers,time_macros + export CCACHE_FILECLONE=true + export CCACHE_DEPEND=true + export CCACHE_COMPILERCHECK=content ./b.sh --ios --${{ github.event.inputs.buildVariant }} - name: Package build