From c49e67c839288c3a7b1797839b00c5d2250eed81 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Sat, 16 Aug 2025 02:04:00 +0100 Subject: [PATCH] switch windows to use conan --- .github/workflows/release.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4743554..692095a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -119,12 +119,17 @@ jobs: mingw-w64-x86_64-make mingw-w64-x86_64-gmp mingw-w64-x86_64-gc - mingw-w64-x86_64-gmp-static - mingw-w64-x86_64-gc-static + + - name: Install Conan + run: | + python -m pip install --upgrade pip + pip install conan + conan profile detect - name: Build Project run: | - make windows + conan install . --build=missing + conan build . - name: Package run: |