We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d2ee24 commit a84c0f7Copy full SHA for a84c0f7
1 file changed
.github/workflows/check.yml
@@ -87,6 +87,7 @@ jobs:
87
- name: Setup ccache path
88
run: |
89
echo "/opt/homebrew/opt/ccache/libexec" >> $GITHUB_PATH
90
+ echo "CCACHE_LOGFILE=/tmp/ccache.log" >> $GITHUB_ENV
91
92
- name: Install dependencies
93
run: bun install --frozen-lockfile
@@ -107,4 +108,7 @@ jobs:
107
108
npx react-native build-ios --mode Debug
109
110
- name: ccache stats
- run: ccache -s
111
+ run: |
112
+ ccache -s
113
+ echo "---"
114
+ cat /tmp/ccache.log
0 commit comments