Skip to content

Commit c5e11d1

Browse files
Cache Support: Try 13
1 parent f2c3431 commit c5e11d1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,17 @@ jobs:
6464
run: |
6565
echo "CCACHE_DIR=$(pwd)/ccache" >> $GITHUB_ENV
6666
echo "PATH=/usr/lib/ccache:/usr/local/bin:/opt/sdk-dat-arm/host/usr/bin/:$PATH" >> $GITHUB_ENV
67+
mkdir -p ~/ccache-links
68+
cd ~/ccache-links
69+
ln -s $(which ccache) clang
70+
ln -s $(which ccache) clang++
71+
ln -s $(which ccache) llvm-ar
72+
ln -s $(which ccache) llvm-nm
73+
ln -s $(which ccache) llvm-objcopy
74+
ln -s $(which ccache) llvm-objdump
75+
ln -s $(which ccache) llvm-readelf
76+
ln -s $(which ccache) llvm-strip
77+
echo "PATH=~/ccache-links:$PATH" >> $GITHUB_ENV
6778
6879
# Configure ccache
6980
- name: Configure ccache

0 commit comments

Comments
 (0)