Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit 1cbac84

Browse files
committed
ci: fix dump of llvm info
1 parent 1bc46b1 commit 1cbac84

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/x86_64-apple-darwin-compiler.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
tar -xzf "clang+llvm-${LLVM_VERSION}-x86_64-apple-darwin21.0.tar.xz"
4848
mv "clang+llvm-${LLVM_VERSION}-x86_64-apple-darwin21.0" firefly
4949
popd
50-
echo ~/.local/share/llvm/firefly/bin/llvm-config --cxxflags
51-
echo ~/.local/share/llvm/firefly/bin/llvm-config --ldflags
52-
echo ~/.local/share/llvm/firefly/bin/llvm-config --host-target
50+
echo "$(~/.local/share/llvm/firefly/bin/llvm-config --cxxflags)"
51+
echo "$(~/.local/share/llvm/firefly/bin/llvm-config --ldflags)"
52+
echo "$(~/.local/share/llvm/firefly/bin/llvm-config --host-target)"
5353
- name: Set LLVM_PREFIX
5454
run: echo "LLVM_PREFIX=$HOME/.local/share/llvm/firefly" >> $GITHUB_ENV
5555
- name: Install Ninja

.github/workflows/x86_64-unknown-linux-gnu-compiler.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
echo "$("${LLVM_PREFIX}/bin/llvm-config" --prefix)"
3838
exit 1
3939
fi
40-
echo "${LLVM_PREFIX}/bin/llvm-config" --cxxflags
41-
echo "${LLVM_PREFIX}/bin/llvm-config" --ldflags
42-
echo "${LLVM_PREFIX}/bin/llvm-config" --host-target
40+
echo "$("${LLVM_PREFIX}/bin/llvm-config" --cxxflags)"
41+
echo "$("${LLVM_PREFIX}/bin/llvm-config" --ldflags)"
42+
echo "$("${LLVM_PREFIX}/bin/llvm-config" --host-target)"
4343
- name: Install Rust
4444
uses: actions-rs/toolchain@v1
4545
with:

0 commit comments

Comments
 (0)