From 71a8e22bae818f261cd3ea53b993f4f597f58217 Mon Sep 17 00:00:00 2001 From: mike919192 <91038685+mike919192@users.noreply.github.com> Date: Sat, 11 May 2024 15:44:45 -0400 Subject: [PATCH 1/2] Update cmake-single-platform.yml --- .github/workflows/cmake-single-platform.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 905c241..6ba25c0 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -36,8 +36,10 @@ jobs: find ./ -type f \( -iname \*.h -o -iname \*.cpp \) | xargs clang-format --dry-run -Werror - name: Install Conan - id: conan - uses: turtlebrowser/get-conan@main + run: | + sudo apt-get update + sudo apt install python3-pip + sudo pip install conan - name: Create profile run: conan profile detect --force From f08fc47449bffee2a82daa50808350773304b59a Mon Sep 17 00:00:00 2001 From: mike919192 <91038685+mike919192@users.noreply.github.com> Date: Sat, 11 May 2024 15:48:16 -0400 Subject: [PATCH 2/2] pip is already installed --- .github/workflows/cmake-single-platform.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 6ba25c0..f6e9f67 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -37,8 +37,6 @@ jobs: - name: Install Conan run: | - sudo apt-get update - sudo apt install python3-pip sudo pip install conan - name: Create profile