Skip to content

Commit 4790321

Browse files
author
Shao-Ce SUN
authored
fix ubuntu CI (#109)
Error info: /usr/include/lldb/Utility/FileSpec.h: In member function ‘bool lldb_private::FileSpec::IsCaseSensitive() const’: /usr/include/lldb/Utility/FileSpec.h:205:41: error: ‘is_style_posix’ was not declared in this scope 205 | bool IsCaseSensitive() const { return is_style_posix(m_style); }
1 parent 0717890 commit 4790321

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919

2020
steps:
2121
- name: Install Ninja, LLVM, Clang and LLDB (Ubuntu)
22-
run: sudo apt-get install -y ninja-build clang-format clang libclang-dev liblldb-dev lldb llvm-dev llvm
22+
run: |
23+
sudo apt-get install -y ninja-build clang-format clang libclang-dev liblldb-dev lldb llvm-dev llvm
24+
echo "LLVM_CONFIG_PATH=$(llvm-config --cmakedir)" >> $GITHUB_ENV
2325
if: matrix.os == 'ubuntu-latest'
2426

2527
- name: Checkout sources

0 commit comments

Comments
 (0)