Skip to content

Commit

Permalink
ci: try using LLVM's script to install on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloperPaul123 committed Apr 26, 2024
1 parent 6ca471e commit e0db186
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
version: [14, 15, 16, 17]
version: [14, 15, 16, 17, 18]

steps:
- uses: actions/checkout@v3
Expand All @@ -94,10 +94,10 @@ jobs:
sudo apt-get install build-essential -y
- name: Set up Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: ${{ matrix.version }}
arch: x64
run: |
wget -O llvm.sh https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh ${{matrix.version}}
- name: configure clang
run: cmake -S . -B build-clang -DTP_BUILD_EXAMPLES=OFF -DTP_BUILD_BENCHMARKS=OFF -DTP_THREAD_SANITIZER=OFF -DCMAKE_BUILD_TYPE=Debug
Expand Down

0 comments on commit e0db186

Please sign in to comment.