You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2021/06/04 01:34:14 UTC

[iotdb] branch enable_client_ci12 created (now daa6193)

This is an automated email from the ASF dual-hosted git repository.

haonan pushed a change to branch enable_client_ci12
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


      at daa6193  enable the client library test for all changes (#3328)

This branch includes the following new commits:

     new daa6193  enable the client library test for all changes (#3328)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[iotdb] 01/01: enable the client library test for all changes (#3328)

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch enable_client_ci12
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit daa619399dc0f0cb260b25cb886704a9389f512e
Author: Xiangdong Huang <hx...@apache.org>
AuthorDate: Fri Jun 4 09:19:24 2021 +0800

    enable the client library test for all changes (#3328)
    
    Co-authored-by: xiangdong huang <sa...@gmail.com>
---
 .github/workflows/client.yml | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml
index f6a7bad..8227f6c 100644
--- a/.github/workflows/client.yml
+++ b/.github/workflows/client.yml
@@ -10,20 +10,10 @@ on:
     branches:
       - master
       - "rel/*"
-    paths:
-      - "client-*/**"
-      - "compile-tools/**"
-      - "thrift/**"
-      - "service-rpc/**"
   pull_request:
     branches:
       - master
       - "rel/*"
-    paths:
-      - "client-*/**"
-      - "compile-tools/**"
-      - "thrift/**"
-      - "service-rpc/**"
   # allow manually run the action:
   workflow_dispatch:
 
@@ -95,9 +85,11 @@ jobs:
           cd D:\a\cpp\boost_1_72_0 ; `
           .\bootstrap.bat ; `
           .\b2.exe
-      - name: Add Flex and Bison Path
+      - name: Install OpenSSL
+        run:  choco install openssl
+      - name: Add Flex and Bison Path and OpenSSL
         shell: bash
-        run: cd /d/a/cpp && unzip win_flex_bison.zip && mv win_flex.exe flex.exe && mv win_bison.exe bison.exe && echo 'export PATH=/d/a/cpp:$PATH' >> ~/.bash_profile && source ~/.bash_profile
+        run: cd /d/a/cpp && unzip win_flex_bison.zip && mv win_flex.exe flex.exe && mv win_bison.exe bison.exe  && echo 'export PATH=/d/a/cpp:$PATH' >> ~/.bash_profile && source ~/.bash_profile
       - name: Test with Maven
         shell: bash
         run: source ~/.bash_profile && mvn -B clean integration-test -P compile-cpp -Dboost.include.dir=/d/a/cpp/boost_1_72_0 -Dboost.library.dir=/d/a/cpp/boost_1_72_0/stage/lib -Dtsfile.test.skip=true -Djdbc.test.skip=true -Diotdb.test.skip=true -Dtest.port.closed=true -Denforcer.skip=true -pl server,client-cpp,example/client-cpp-example -am