WIP Use windows branch on windows CI

This commit is contained in:
Matthieu Gautier 2024-05-29 17:33:55 +02:00
parent d2d1f686b1
commit 05fc3b409c
1 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,13 @@ class Libzim(Dependency):
git_remote = "https://github.com/openzim/libzim.git"
git_dir = "libzim"
@property
def git_ref(self):
if neutralEnv("distname") == "Windows":
return "libzim_github_ci_windows"
else:
return "main"
class Builder(MesonBuilder):
test_options = ["-t", "8"]
strip_options = []