This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch wincppfix
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/wincppfix by this push:
new 425a00d try
425a00d is described below
commit 425a00d0052e030d7e2c5257e5161202901892ba
Author: HTHou <[email protected]>
AuthorDate: Tue Mar 29 15:03:01 2022 +0800
try
---
.github/workflows/client.yml | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml
index 739b4b0..80323bc 100644
--- a/.github/workflows/client.yml
+++ b/.github/workflows/client.yml
@@ -88,7 +88,11 @@ jobs:
Invoke-WebRequest
https://github.com/lexxmark/winflexbison/releases/download/v2.5.24/win_flex_bison-2.5.24.zip
-OutFile D:\a\cpp\win_flex_bison.zip ; `
[Environment]::SetEnvironmentVariable("Path", $env:Path +
";D:\a\cpp", "User") ; `
- name: Download Boost
- run: choco install boost-msvc-12
+ run: choco install boost-msvc-14.3 --version=1.78.0
+ - name: Install Boost
+ run: cd C:\local\boost_1_78_0 ; `
+ .\bootstrap.bat ; `
+ .\b2.exe
- name: Install OpenSSL
run: choco install openssl
- name: Add Flex and Bison Path and OpenSSL
@@ -96,4 +100,4 @@ jobs:
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=/c/local/boost_1_58_0
-Dboost.library.dir=/c/local/boost_1_58_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
-Dcmake.generator="Visual Studio 17 2022"
+ run: source ~/.bash_profile && mvn -B clean integration-test -P
compile-cpp -Dboost.include.dir=/c/local/boost_1_78_0
-Dboost.library.dir=/c/local/boost_1_78_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
-Dcmake.url="https://github.com/Kitware/CMake/releases/download/v3.21.6/cmake-3.21.6-windows-x86_64.zip"
-Dcmake.root.dir="${project.build.director [...]