From 14125f336177aad42eae836e411354fb5c99fee2 Mon Sep 17 00:00:00 2001 From: Anton Maklakov Date: Mon, 12 Jun 2017 15:22:09 +0800 Subject: [PATCH] CI: Add CI options to use more attempts in some transfer situations --- .gitlab-ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0760e41a79..03c34057f0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,11 +7,19 @@ stages: - deploy variables: -# system environment +# System environment + # Common parameters for the 'make' during CI tests MAKEFLAGS: "-j5 --no-keep-going" +# GitLab-CI environment + + # more attempts for more robust + GET_SOURCES_ATTEMPTS: "10" + ARTIFACT_DOWNLOAD_ATTEMPTS: "10" + # IDF environment + IDF_PATH: "$CI_PROJECT_DIR" before_script: -- 2.40.0