From ca61f575f0382d878c6a80790ff59e33c09f5f69 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 30 Sep 2021 22:30:29 +0200 Subject: [PATCH] chore: conan install `-u` option removed from gitpod --- .gitpod.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 181329b5..481aff1c 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -10,25 +10,25 @@ tasks: init: | gp sync-await conan-update mkdir -p build/GCC-11 && cd build/GCC-11 - conan install ../.. -pr gcc11 -s compiler.cppstd=20 -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated -u + conan install ../.. -pr gcc11 -s compiler.cppstd=20 -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated conan build ../.. - name: gcc-11 Debug init: | gp sync-await conan-update mkdir -p build/GCC-11 && cd build/GCC-11 - conan install ../.. -pr gcc11 -s compiler.cppstd=20 -s build_type=Debug -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated -u + conan install ../.. -pr gcc11 -s compiler.cppstd=20 -s build_type=Debug -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated conan build ../.. - name: clang-13 Release init: | gp sync-await conan-update mkdir -p build/Clang-13 && cd build/Clang-13 - conan install ../.. -pr clang13 -s compiler.cppstd=20 -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated -u + conan install ../.. -pr clang13 -s compiler.cppstd=20 -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated conan build ../.. - name: clang-13 Debug init: | gp sync-await conan-update mkdir -p build/Clang-13 && cd build/Clang-13 - conan install ../.. -pr clang13 -s compiler.cppstd=20 -s build_type=Debug -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated -u + conan install ../.. -pr clang13 -s compiler.cppstd=20 -s build_type=Debug -e mp-units:CONAN_RUN_TESTS=True -o build_docs=False -b outdated conan build ../.. vscode: