From c8955dcc0c192b26eaf60c4ed11faa1f73ef87b5 Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Mon, 26 Jun 2023 14:52:20 -0400 Subject: [PATCH] [ghactions] Fix llvm version number for ubuntu env --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5fe67af5..9eab1ea5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: run: > sudo apt-get update && sudo apt-get install lsb-release wget software-properties-common && - wget -O /tmp/llvm.sh https://apt.llvm.org/llvm.sh && sudo chmod +x /tmp/llvm.sh && sudo /tmp/llvm.sh 13 && + wget -O /tmp/llvm.sh https://apt.llvm.org/llvm.sh && sudo chmod +x /tmp/llvm.sh && sudo /tmp/llvm.sh 15 && sudo apt-get install clang-15 g++-12