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 <[email protected]> AuthorDate: Fri Jun 4 09:19:24 2021 +0800 enable the client library test for all changes (#3328) Co-authored-by: xiangdong huang <[email protected]> --- .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
