From 3f025f15df5e888611c873ba3d8c8afc23f10754 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Fri, 13 Sep 2024 11:30:19 -0400 Subject: fix --- .github/workflows/cmake.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to '.github') diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index db2a242..1a71826 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -15,13 +15,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Get LLVM - run: - - apt install -y wget cmake git lsb-release software-properties-common gpg - - wget https://apt.llvm.org/llvm.sh - - chmod +x llvm.sh - - sudo ./llvm.sh ${{matrix.version}} - - sudo apt-get install -y clang-${{matrix.version}} llvm-${{matrix.version}}-dev libclang-common-${{matrix.version}}-dev libclang-${{matrix.version}}-dev - - git submodule init && git submodule update + run: apt install -y wget cmake git lsb-release software-properties-common gpg && wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh ${{matrix.version}} && sudo apt-get install -y clang-${{matrix.version}} llvm-${{matrix.version}}-dev libclang-common-${{matrix.version}}-dev libclang-${{matrix.version}}-dev && git submodule init && git submodule update - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=clang++-${{matrix.version}} -DLLVM_CONF=llvm-config-${{matrix.version}} -DUSE_MONOLITH_LIBTOOLING=ON - name: Build -- cgit v1.2.3