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 81382d71c05 Fix client cpp IT warning (#12548)
81382d71c05 is described below
commit 81382d71c0538de3e48fca4a27d895eaec08747a
Author: Haonan <[email protected]>
AuthorDate: Sat May 18 11:13:00 2024 +0800
Fix client cpp IT warning (#12548)
---
.github/workflows/client-cpp.yml | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/client-cpp.yml b/.github/workflows/client-cpp.yml
index e110a90ff3e..a213aeb5f5e 100644
--- a/.github/workflows/client-cpp.yml
+++ b/.github/workflows/client-cpp.yml
@@ -45,15 +45,14 @@ jobs:
if: matrix.os == 'ubuntu-latest'
shell: bash
run: sudo apt-get update && sudo apt-get install libboost-all-dev
- - name: Install CPP Dependencies (Mac)`
+ - name: Install CPP Dependencies (Mac)
if: matrix.os == 'macos-latest'
shell: bash
run: |
brew install boost
brew install bison
- echo 'export PATH="/usr/local/opt/bison/bin:$PATH"' >>
~/.bash_profile
- source ~/.bash_profile && export LDFLAGS="-L/usr/local/opt/bison/lib"
- brew install openssl
+ echo 'export PATH="/opt/homebrew/opt/bison/bin:$PATH"' >>
~/.bash_profile
+ source ~/.bash_profile && export
LDFLAGS="-L/opt/homebrew/opt/bison/lib"
- name: Cache Maven packages
uses: actions/cache@v4
with: