Skip to content

Commit

Permalink
WIP Use windows branch on windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr committed Jun 7, 2024
1 parent 703554d commit 8e1c46d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kiwixbuild/dependencies/libzim.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ class Source(GitClone):
git_remote = "https://github.com/openzim/libzim.git"
git_dir = "libzim"

@property
def git_ref(self):
if neutralEnv("distname") == "Windows":
return "windows"
else:
return "main"

class Builder(MesonBuilder):
test_options = ["-t", "8"]
strip_options = []
Expand Down

0 comments on commit 8e1c46d

Please sign in to comment.