From fa6b5d4358e7b0c551b8adbcab0bbdf6af33e5f0 Mon Sep 17 00:00:00 2001 From: David Bauer Date: Fri, 8 May 2020 16:15:57 +0200 Subject: [PATCH] github: set CONFIG_SRC_TREE_OVERRIDE in actions CI The OpenWrt config needs to have CONFIG_SRC_TREE_OVERRIDE enabled in order to build from the version checked out in the linked source-tree. This was forgotten when adding the CI and therefore the CI was always building the version from the packages feed. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58b5ef6..95bfa1d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - name: Extract OpenWrt SDK run: tar xf openwrt-sdk.tar.xz && mv openwrt-sdk-ath79-generic_gcc-8.4.0_musl.Linux-x86_64 sdk - name: Create config - run: make -C sdk defconfig + run: make -C sdk defconfig && echo "CONFIG_SRC_TREE_OVERRIDE=y" >> sdk/.config - name: Update package feed run: ./sdk/scripts/feeds update -a && ./sdk/scripts/feeds install -a - name: Link DAWN source