From 405fc1ed8e2861bba4395fdf15d76d8b32ac55fa Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Fri, 27 Nov 2020 18:32:57 +0100 Subject: [PATCH] Get conan --- .github/workflows/cmake.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2521314..b156f95 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -23,6 +23,16 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Get Conan + run: | + pip3 install wheel setuptools + pip3 install conan --upgrade + mkdir build + + - name: Fix Path on Ubuntu + if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-18.04' || matrix.os == 'ubuntu-16.04' + run: echo "::add-path::/home/runner/.local/bin" + - name: Get Clang 11 on Ubuntu if: matrix.configurations.os == 'ubuntu-20.04' || matrix.configurations.os == 'ubuntu-18.04' run: sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"