Force regen conan profile; Build with newer macos runner

This commit is contained in:
laggykiller 2024-02-28 11:16:40 +08:00
parent 44b9ffbfa0
commit 5e4c68e1a2
2 changed files with 4 additions and 4 deletions

View file

@ -117,15 +117,15 @@ jobs:
cibw_archs: ARM64 cibw_archs: ARM64
cibw_build: "cp*" cibw_build: "cp*"
compile_target: armv8 compile_target: armv8
- os: macos-11 - os: macos-12
cibw_archs: x86_64 cibw_archs: x86_64
cibw_build: "cp*" cibw_build: "cp*"
compile_target: x86_64 compile_target: x86_64
- os: macos-11 - os: macos-14
cibw_archs: arm64 cibw_archs: arm64
cibw_build: "cp*" cibw_build: "cp*"
compile_target: armv8 compile_target: armv8
- os: macos-11 - os: macos-14
cibw_archs: universal2 cibw_archs: universal2
cibw_build: "cp*" cibw_build: "cp*"
compile_target: universal2 compile_target: universal2

View file

@ -76,7 +76,7 @@ def install_openssl(arch: str) -> dict:
# Need to compile openssl if musllinux # Need to compile openssl if musllinux
build.append("openssl*") build.append("openssl*")
subprocess.run(["conan", "profile", "detect"]) subprocess.run(["conan", "profile", "detect", "-f"])
conan_output = os.path.join("conan_output", arch) conan_output = os.path.join("conan_output", arch)