multi-docker do't need thses container, skip it
Signed-off-by: Xiao Shenwei xiaoshenwei96@163.com --- setup/simplify-ci | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/setup/simplify-ci b/setup/simplify-ci index e3ee3f77..eb93c150 100755 --- a/setup/simplify-ci +++ b/setup/simplify-ci @@ -36,23 +36,22 @@ boot_ipxe()
run_service() { + [[ $suite == "multi-docker" ]] && return + ( cd $CCI_SRC/container/dnsmasq || return - ./build - ./start + ./build && ./start boot_ipxe )& ( cd $CCI_SRC/container/qemu-efi || return - ./build - ./install + ./build && ./install )& ( cd $CCI_SRC/container/fluentd-base || return ./build cd $CCI_SRC/container/sub-fluentd || return - ./build - ./start + ./build && ./start )& }
please ignore this patch
Thanks, Shenwei
On Fri, Oct 16, 2020 at 11:00:50AM +0800, Xiao Shenwei wrote:
multi-docker do't need thses container, skip it
Signed-off-by: Xiao Shenwei xiaoshenwei96@163.com
setup/simplify-ci | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/setup/simplify-ci b/setup/simplify-ci index e3ee3f77..eb93c150 100755 --- a/setup/simplify-ci +++ b/setup/simplify-ci @@ -36,23 +36,22 @@ boot_ipxe()
run_service() {
- [[ $suite == "multi-docker" ]] && return
- ( cd $CCI_SRC/container/dnsmasq || return
./build
./start
boot_ipxe )& ( cd $CCI_SRC/container/qemu-efi || return./build && ./start
./build
./install
)& ( cd $CCI_SRC/container/fluentd-base || return ./build cd $CCI_SRC/container/sub-fluentd || return./build && ./install
./build
./start
)&./build && ./start
}
-- 2.23.0