We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 323e4f4 commit 4625c9aCopy full SHA for 4625c9a
1 file changed
.github/workflows/push.yml
@@ -70,7 +70,13 @@ jobs:
70
lldb-${{ matrix.llvm }} \
71
liblldb-${{ matrix.llvm }}-dev
72
73
- sudo ln -s "$(which lldb-${{ matrix.llvm }})" /usr/bin/lldb
+ 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
80
- name: npm install
81
run: |
82
npm install --llnode_build_addon=true --llnode_coverage=true
0 commit comments