Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyekanren authored Feb 25, 2025
1 parent 91ede40 commit ffbea0a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ jobs:
shell: cmd
run: choco install boost-msvc-14.3 --version=1.87.0

- name: add boost to path
run: |
$boost_path = (Get-ChildItem -Path 'C:\local\' -Filter 'boost_*').FullName
echo $boost_path >> $env:GITHUB_PATH
- name: download & unpack flex&bison
shell: cmd
run: |
Expand Down Expand Up @@ -86,6 +91,7 @@ jobs:

- name: Collect IoTDB info
id: iotdb-info
shell: bash
run: |
echo "mkdir upload"
mkdir upload
Expand All @@ -101,9 +107,7 @@ jobs:
# boost
# echo "boost_include_dir=${{ github.workspace }}\boost_1_87_0\boost_1_87_0" >> "$GITHUB_OUTPUT"
# echo "boost_library_dir=${{ github.workspace }}\boost_1_87_0\boost_1_87_0\stage\lib" >> "$GITHUB_OUTPUT"
$boost_path = (Get-ChildItem -Path 'C:\local\' -Filter 'boost_*').FullName
echo $boost_path >> $env:GITHUB_PATH
#
echo "cmake_url=https://github.com/Kitware/CMake/releases/download/v3.23.1/cmake-3.23.1-windows-x86_64.zip" >> "$GITHUB_OUTPUT"
if [ "${{ matrix.iotdb_version }}" = "master" ]; then
Expand Down

0 comments on commit ffbea0a

Please sign in to comment.