Skip to content

Commit a52c237

Browse files
Cache Support: Try 14
1 parent c5e11d1 commit a52c237

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
ln -s $(which ccache) llvm-objdump
7575
ln -s $(which ccache) llvm-readelf
7676
ln -s $(which ccache) llvm-strip
77-
echo "PATH=~/ccache-links:$PATH" >> $GITHUB_ENV
77+
echo "PATH=$HOME/ccache-links:$PATH" >> $GITHUB_ENV
7878
7979
# Configure ccache
8080
- name: Configure ccache
@@ -93,6 +93,11 @@ jobs:
9393
restore-keys: |
9494
ccache-${{ inputs.model }}-
9595
96+
- name: Verify ccache and clang
97+
run: |
98+
which ccache || echo "ccache not found!"
99+
which clang || echo "clang not found!"
100+
96101
- name: Set CONFIG Environment Variable
97102
run: |
98103
CONFIG="${{ inputs.model }}"
@@ -244,11 +249,6 @@ jobs:
244249
perl -pi -e 's{UTS_VERSION="\$\(echo \$UTS_VERSION \$CONFIG_FLAGS \$TIMESTAMP \| cut -b -\$UTS_LEN\)"}{UTS_VERSION="#1 SMP PREEMPT Sat Apr 20 04:20:00 UTC 2024"}' ./common/scripts/mkcompile_h
245250
perl -pi -e 's{UTS_VERSION="\$\(echo \$UTS_VERSION \$CONFIG_FLAGS \$TIMESTAMP \| cut -b -\$UTS_LEN\)"}{UTS_VERSION="#1 SMP PREEMPT Sat Apr 20 04:20:00 UTC 2024"}' ./msm-kernel/scripts/mkcompile_h
246251
247-
- name: Verify ccache and clang
248-
run: |
249-
which ccache || echo "ccache not found!"
250-
which clang || echo "clang not found!"
251-
252252
- name: Build the Kernel
253253
run: |
254254
echo "Changing to configuration directory: $CONFIG..."

0 commit comments

Comments
 (0)