Skip to content

Commit 5829656

Browse files
committed
github actions: build-check: Use ./scripts/dummy-tools/ for olddefconfig
LE-2788 This prevents any local machine particulars from changing the config
1 parent 6aa3e41 commit 5829656

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-check_aarch64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
run: |
3131
git config --global --add safe.directory /__w/kernel-src-tree/kernel-src-tree
3232
cp configs/kernel-aarch64-rhel.config .config
33-
make olddefconfig
33+
make ARCH=arm64 CROSS_COMPILE=./scripts/dummy-tools/ olddefconfig
3434
make -j8

.github/workflows/build-check_x86_64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
run: |
3131
git config --global --add safe.directory /__w/kernel-src-tree/kernel-src-tree
3232
cp configs/kernel-x86_64-rhel.config .config
33-
make olddefconfig
33+
make ARCH=x86_64 CROSS_COMPILE=./scripts/dummy-tools/ olddefconfig
3434
make -j8

0 commit comments

Comments
 (0)