From 8493a17ad9d241c0389abb29fe1517850ff5a0b2 Mon Sep 17 00:00:00 2001 From: Alex Lisitsyn Date: Mon, 27 Jan 2025 19:56:36 +0800 Subject: [PATCH] fix component release issues under windows --- .gitlab-ci.yml | 1 + idf_component.yml | 21 ++++++++++++++------- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6bea4ff..f9a9297 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -341,6 +341,7 @@ upload_to_component_manager: - if: '$CI_COMMIT_BRANCH == "main"' # the main branch is a component release branch for v2 - if: '$FORCE_PUSH_COMPONENT == "1"' when: manual + allow_failure: true script: - pip install idf-component-manager - export IDF_COMPONENT_API_TOKEN=${ESP_MODBUS_API_KEY} diff --git a/idf_component.yml b/idf_component.yml index fcb2288..5ef896c 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,16 +1,23 @@ -version: "2.0.1" +version: "2.0.1~1" description: ESP-MODBUS is the official Modbus library for Espressif SoCs. url: https://github.com/espressif/esp-modbus dependencies: idf: ">=5.0" files: exclude: - - "docs/**/*" - "docs" - - "test/**/*" + - "docs/**/*" - "test" - - "pytest_embedded_log/**/*" - - "build*/**/*" + - "test/**/*" + - "**/arch/" + - "**/arch/**/*" + - "**/pytest_embedded_log/**/*" + - "**/build*/**/*" - "**/*.zip" - - "__pycache__/**/*" - + - "**/*.xml" + - "**/*.html" + - "**/*.pcap" + - "**/*.log" + - "**/*.code-workspace" + - "**/__pycache__/**/*" + - "**/.pytest_cache/**/*" \ No newline at end of file