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.
This commit is contained in:
David Bauer 2020-05-08 16:15:57 +02:00 committed by Polynomialdivision
parent c497e18537
commit fa6b5d4358

View file

@ -18,7 +18,7 @@ jobs:
- name: Extract OpenWrt SDK - 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 run: tar xf openwrt-sdk.tar.xz && mv openwrt-sdk-ath79-generic_gcc-8.4.0_musl.Linux-x86_64 sdk
- name: Create config - 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 - name: Update package feed
run: ./sdk/scripts/feeds update -a && ./sdk/scripts/feeds install -a run: ./sdk/scripts/feeds update -a && ./sdk/scripts/feeds install -a
- name: Link DAWN source - name: Link DAWN source