Skip to content

Commit 4625c9a

Browse files
trxcllntNo9
authored andcommitted
also symlink llvm-config binary
1 parent 323e4f4 commit 4625c9a

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/push.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,13 @@ jobs:
7070
lldb-${{ matrix.llvm }} \
7171
liblldb-${{ matrix.llvm }}-dev
7272
73-
sudo ln -s "$(which lldb-${{ matrix.llvm }})" /usr/bin/lldb
73+
if [[ -n "$(which lldb-${{ matrix.llvm }})" ]]; then
74+
sudo ln -s "$(which lldb-${{ matrix.llvm }})" /usr/bin/lldb
75+
fi
76+
77+
if [[ -n "$(which llvm-config-${{ matrix.llvm }})" ]]; then
78+
sudo ln -s "$(which llvm-config-${{ matrix.llvm }})" /usr/bin/llvm-config
79+
fi
7480
- name: npm install
7581
run: |
7682
npm install --llnode_build_addon=true --llnode_coverage=true

0 commit comments

Comments
 (0)