Skip to content

Commit

Permalink
Updated clang verision to 16 in release.yml to avoid build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ashbob999 committed Apr 26, 2024
1 parent 350ef6b commit b88873a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ jobs:
runs-on: ubuntu-22.04
needs: versioning
env:
CC: clang
CXX: clang++
CC: clang-16
CXX: clang++-16
AR: llvm-ar
NM: llvm-nm
RANLIB: llvm-ranlib
Expand Down Expand Up @@ -191,7 +191,10 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang lld make crossbuild-essential-arm64 crossbuild-essential-armhf
sudo apt-get install -y make build-essential crossbuild-essential-arm64 crossbuild-essential-armhf libjemalloc-dev
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 16
- name: Build C/C++
run: |
Expand Down

0 comments on commit b88873a

Please sign in to comment.