Compare commits

..

2 Commits

Author SHA1 Message Date
William Bell
be4b04a286 fix release.yml 2025-08-15 20:59:49 +01:00
William Bell
9d11122e93 fix conanfile.py 2025-08-15 20:50:58 +01:00
2 changed files with 8 additions and 1 deletions

View File

@@ -130,7 +130,13 @@ jobs:
-s arch=x86_64 ` -s arch=x86_64 `
-s os=Windows ` -s os=Windows `
--build=missing --build=missing
conan build . conan build . `
-s compiler=gcc `
-s compiler.version=13 `
-s compiler.libcxx=libstdc++11 `
-s arch=x86_64 `
-s os=Windows `
--build=missing
shell: pwsh shell: pwsh
- name: Package - name: Package

View File

@@ -30,6 +30,7 @@ class ArgonConan(ConanFile):
self.folders.generators = "build" self.folders.generators = "build"
def generate(self): def generate(self):
os.environ["CONAN_NON_INTERACTIVE"] = "1"
tc = CMakeToolchain(self) tc = CMakeToolchain(self)
if os.name == "nt": # Windows if os.name == "nt": # Windows