Skip to content

Commit 4faa207

Browse files
committed
ci(sultan): update toolchain paths to use relative paths
Use relative paths for CROSS_COMPILE and CC to make the workflow more portable and less dependent on absolute paths in the home directory.
1 parent 0404d34 commit 4faa207

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/sultan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ jobs:
207207
#fi
208208
209209
# Set toolchain paths
210-
export CROSS_COMPILE=$HOME/gcc-15.2.0-nolibc/aarch64-linux/bin/aarch64-linux-
211-
export CC=$HOME/gcc-15.2.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc
210+
export CROSS_COMPILE=../gcc-15.2.0-nolibc/aarch64-linux/bin/aarch64-linux-
211+
export CC=../gcc-15.2.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc
212212
213213
make CROSS_COMPILE=$CROSS_COMPILE CC=$CC -j$(nproc --all) ${{ inputs.codename }}_defconfig
214214
make CROSS_COMPILE=$CROSS_COMPILE CC=$CC -j$(nproc --all)

0 commit comments

Comments
 (0)