Skip to content

Commit a84c0f7

Browse files
chore: print ccache log after compilation
1 parent 4d2ee24 commit a84c0f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
- name: Setup ccache path
8888
run: |
8989
echo "/opt/homebrew/opt/ccache/libexec" >> $GITHUB_PATH
90+
echo "CCACHE_LOGFILE=/tmp/ccache.log" >> $GITHUB_ENV
9091
9192
- name: Install dependencies
9293
run: bun install --frozen-lockfile
@@ -107,4 +108,7 @@ jobs:
107108
npx react-native build-ios --mode Debug
108109
109110
- name: ccache stats
110-
run: ccache -s
111+
run: |
112+
ccache -s
113+
echo "---"
114+
cat /tmp/ccache.log

0 commit comments

Comments
 (0)