From: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> clang-16 is now available, use it. Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 333929c..2608644 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -91,15 +91,15 @@ jobs: uses: actions/checkout@v2 - name: Install Compilers run: | if [[ "${{matrix.cc_pkg}}" == "clang" ]]; then \ wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh; \ - sudo bash /tmp/llvm.sh 15; \ - sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-15 400; \ - sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 400; \ + sudo bash /tmp/llvm.sh 16; \ + sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 400; \ + sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 400; \ else \ sudo apt-get update -y; \ sudo apt-get install -y ${{matrix.cc_pkg}} ${{matrix.cxx_pkg}}; \ fi; - name: Display compiler versions -- Ammar Faizi