From afc1e0ad97f80bd45381583975b16fa1ea7671ab Mon Sep 17 00:00:00 2001 From: Andrei Gherzan <andrei.gherzan@huawei.com> Date: Thu, 3 Mar 2022 12:41:45 +0100 Subject: [PATCH] sysota: Allow network in do_compile sysota is a go project using go modules. Due to how this support is currently implemented in the core, the recipe will download the dependent go packages during compile. On the other hand, lately, the core also defaulted to a restricted network environment in the compile task breaking (but for good reasons) the compilation of sysota. This situation was done as a forcing function for the community to react and improve the current implementation of go mods in the core. For now, we workaround it as this doesn't change the current limitations/behaviour while we investigate better options in the core. Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> --- meta-oniro-core/recipes-core/sysota/sysota_git.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oniro-core/recipes-core/sysota/sysota_git.bb b/meta-oniro-core/recipes-core/sysota/sysota_git.bb index d78167a2..35e949ed 100644 --- a/meta-oniro-core/recipes-core/sysota/sysota_git.bb +++ b/meta-oniro-core/recipes-core/sysota/sysota_git.bb @@ -77,6 +77,8 @@ do_compile:append() { oe_runmake -C ${B}/make-build --warn-undefined-variables Go.Cmd=/bin/false } +do_compile[network] = "1" + do_install:append() { oe_runmake -C ${B}/make-build --warn-undefined-variables install DESTDIR=${D} -- GitLab