Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Arshia001 committed Jun 14, 2024
1 parent 49944e5 commit f3e08a6
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/build_cxx_sysroot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,35 @@ jobs:
- name: Update and install dependencies
run: |
pacman -Syu --noconfirm
pacman -Sy --noconfirm coreutils nodejs npm wget git cmake ninja llvm clang rsync make lld wasmer cargo
pacman -Sy --noconfirm coreutils nodejs npm wget git cmake ninja llvm14 clang14 rsync make lld wasmer cargo
ln -s /usr/bin/clang usr/lib/llvm14/bin/clang-14
ln -s /usr/bin/llvm-ar /usr/bin/llvm-ar-14
ln -s /usr/bin/llvm-nm /usr/bin/llvm-nm-14
- name: Log tool versions
run: |
ls /usr/bin -alsh
echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
echo git
git --version
echo "##########################"
echo wasmer
wasmer -V
echo "##########################"
echo clang
clang -v
echo "##########################"
echo llvm-ar
llvm-ar -V
echo "##########################"
echo llvm-nm
llvm-nm -V
echo "##########################"
echo nodejs
node -v
echo "##########################"
echo npm
npm -v
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit f3e08a6

Please sign in to comment.