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
commit 966a463d7e05f9122644c98b9f70a946d919b52c Author: HTHou <[email protected]> AuthorDate: Tue Feb 22 14:01:12 2022 +0800 fix --- .github/workflows/client.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 2e1a9d3..d54c588 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -82,11 +82,14 @@ 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-14.2 + run: mkdir D:\a\boost ; ` + Invoke-WebRequest https://sourceforge.net/projects/boost/files/boost-binaries/1.78.0/boost_1_78_0-msvc-14.3-64.exe -OutFile D:\a\boost\boost_1_78_0-msvc-14.3-64.exe ; ` + D:\a\boost ; ` + .\boost_1_78_0-msvc-14.3-64.exe - name: Install Boost - run: cd C:\local\boost_1_74_0 ; ` + run: cd C:\local\boost_1_78_0 ; ` .\bootstrap.bat ; ` - .\b2 + .\b2.exe - name: Install OpenSSL run: choco install openssl - name: Add Flex and Bison Path and OpenSSL
