Update GHA

This commit is contained in:
Sebastian Miasojed
2024-11-12 17:22:15 +01:00
parent 64fefe76b5
commit 6d16790f83
+2 -4
View File
@@ -32,9 +32,7 @@ jobs:
- name: Install LLVM Dependencies
if: steps.cache-llvm.outputs.cache-hit != 'true'
run: |
# wget https://cmake.org/files/v3.20/cmake-3.20.0-linux-x86_64.sh && chmod +x cmake-3.20.0-linux-x86_64.sh && ./cmake-3.20.0-linux-x86_64.sh --prefix=/usr/local --skip-license
# alias cmake='/usr/local/bin/cmake'
sudo apt-get update && sudo apt-get install -y cmake ninja-build libncurses5 libtinfo-dev
sudo apt-get update && sudo apt-get install -y cmake ninja-build libncurses5 libtinfo-dev libtinfo5
# Install Emscripten
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
@@ -44,7 +42,7 @@ jobs:
- name: Install Dependencies
run: |
rustup target add wasm32-unknown-emscripten
# Install LLVM
# Install LLVM required for the compiler runtime, runtime-api and stdlib
curl -sSL --output llvm.tar.xz https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.4/clang+llvm-18.1.4-x86_64-linux-gnu-ubuntu-18.04.tar.xz
tar Jxf llvm.tar.xz
mv clang+llvm-18.1.4-x86_64-linux-gnu-ubuntu-18.04 llvm18/