From ade898586af1ff2abd9113e8e61d38ca75da7f35 Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Sat, 22 May 2021 16:15:18 +0200 Subject: [PATCH] Fixed github actions apt update --- .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 88956b8d..5e493a69 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: - name: Install add-apt-repository run: sudo apt-get install software-properties-common - name: Add llvm repository - run: sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main' && apt update + run: sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main' && sudo apt update - name: Install deps run: sudo apt-get install ccache cmake libyaml-cpp-dev libspdlog-dev clang-12 libclang-12-dev libclang-cpp12-dev - name: Build and unit test