diff --git a/Jenkinsfile b/Jenkinsfile index eba799c..c8ed365 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,7 +31,7 @@ void checkout_project() { void setup_conan() { sh''' - pip3 install "conan<2.0" pyucis + pip3 install --user "conan<2.0" pyucis conan profile new default --detect --force conan remote list | grep minres > /dev/null [ $? ] || conan remote add minres https://git.minres.com/api/packages/Tooling/conan @@ -43,7 +43,6 @@ void build_n_test_project() { cmake -S . -B build cmake --build build -j12 cmake --build build --target test - cmake --build build --target format-check ''' }