From a2db7b56aa0425b546b659ce1c603e5b29ccf8b6 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Mon, 15 Sep 2025 11:01:41 +0200 Subject: [PATCH] ci: use new minio server --- .gitlab/ci/common.yml | 5 +++++ .gitlab/ci/integration_test.yml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.gitlab/ci/common.yml b/.gitlab/ci/common.yml index 5962b31ba0..70bbd5a068 100644 --- a/.gitlab/ci/common.yml +++ b/.gitlab/ci/common.yml @@ -121,6 +121,11 @@ variables: # add extra python packages export PYTHONPATH="$IDF_PATH/tools:$IDF_PATH/tools/ci:$IDF_PATH/tools/esp_app_trace:$IDF_PATH/components/partition_table:$IDF_PATH/tools/ci/python_packages:$PYTHONPATH" + # minio configuration + # added here since the precedence of variables in gitlab-ci.yml is lower than project settings + export IDF_S3_SERVER="$IDF_S3_NEW_SERVER" + export IDF_S3_ACCESS_KEY="$IDF_S3_NEW_ACCESS_KEY" + .setup_tools_and_idf_python_venv: &setup_tools_and_idf_python_venv | # must use after setup_tools_except_target_test # otherwise the export.sh won't work properly diff --git a/.gitlab/ci/integration_test.yml b/.gitlab/ci/integration_test.yml index c14e515de6..2be6e42ebb 100644 --- a/.gitlab/ci/integration_test.yml +++ b/.gitlab/ci/integration_test.yml @@ -60,6 +60,9 @@ child_integration_test_pipeline: stage: assign_test needs: - gen_integration_pipeline + variables: + IDF_S3_SERVER: $IDF_S3_NEW_SERVER + IDF_S3_ACCESS_KEY: $IDF_S3_NEW_ACCESS_KEY trigger: include: - artifact: idf-integration-ci/child_pipeline/pipeline.yml