This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch cpp_client_artifact in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 584aafa17f4787fb4d160f41b1f866adbbcb52b4 Author: HTHou <[email protected]> AuthorDate: Mon Jan 20 10:21:22 2025 +0800 upload cpp client in CI --- .github/workflows/multi-language-client.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/multi-language-client.yml b/.github/workflows/multi-language-client.yml index f3efb776b15..ac52c76907e 100644 --- a/.github/workflows/multi-language-client.yml +++ b/.github/workflows/multi-language-client.yml @@ -5,6 +5,7 @@ on: - master - "rc/*" - 'force_ci/**' + - 'cpp_client_artifact' paths: - 'pom.xml' - 'iotdb-client/pom.xml' @@ -101,6 +102,12 @@ jobs: else ./mvnw clean verify -P with-cpp -pl iotdb-client/client-cpp,example/client-cpp-example -am fi + - name: Upload Cpp Client Artifact + uses: actions/upload-artifact@v4 + with: + name: client-cpp-${{ runner.os }} + path: client-cpp/target/*.zip + retention-days: 1 - name: Upload Artifact if: failure() uses: actions/upload-artifact@v4
