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:19:56 UTC

[iotdb] branch master updated: enable the client library test for all changes (#3328)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 245f188  enable the client library test for all changes (#3328)
245f188 is described below

commit 245f1887335b04aaddf844a7b14d3ae6e437803a
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 | 15 ++-------------
 1 file changed, 2 insertions(+), 13 deletions(-)

diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml
index 21b37af..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:
 
@@ -96,11 +86,10 @@ jobs:
           .\bootstrap.bat ; `
           .\b2.exe
       - name: Install OpenSSL
-        run:  Invoke-WebRequest https://slproweb.com/download/Win64OpenSSL-1_1_1k.exe -OutFile D:\a\cpp ; `
-          [Environment]::SetEnvironmentVariable("Path", $env:Path + ";D:\a\cpp", "User") ; `
+        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 && mv Win64OpenSSL-1_1_1k.exe openssl.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