From e61ac8814de3a693e4f85ed5232026d8aacba166 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Fri, 29 Nov 2024 12:12:48 -0600 Subject: [PATCH] CI conan install fixes --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 846d76da..b2b5537e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,16 +139,18 @@ jobs: conan config install ` ./source/tools/conan/profiles/${{ matrix.conan_profile }} ` -tf profiles - conan install ./source/ ` + mkdir -p build + cd build + conan install ../source/ ` --remote conancenter ` --build missing ` - --profile:all ${{ matrix.conan_profile }} + --profile:all ${{ matrix.conan_profile }} ` ${{ matrix.conan_package_manager }} - name: Build Supercell Wx shell: pwsh run: | - mkdir build + mkdir -p build cd build cmake ../source/ ` -G Ninja `