Get conan
This commit is contained in:
parent
e30fff3eec
commit
405fc1ed8e
1 changed files with 10 additions and 0 deletions
10
.github/workflows/cmake.yml
vendored
10
.github/workflows/cmake.yml
vendored
|
@ -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)"
|
||||
|
|
Loading…
Reference in a new issue