aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-09-13 15:31:31 +0000
committerterminaldweller <devi@terminaldweller.com>2024-09-13 15:31:31 +0000
commit2beb2599c27e3ce8393af164644d2259cca89a49 (patch)
treeb07aae22dd974937a2def696c0884be3e08db073 /.github
parentfix (diff)
downloadcgrep-2beb2599c27e3ce8393af164644d2259cca89a49.tar.gz
cgrep-2beb2599c27e3ce8393af164644d2259cca89a49.zip
fix
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cmake.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 1a71826..1db14b9 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -15,7 +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: sudo 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