Skip to content

Commit

Permalink
only aarch64 on test
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Jul 31, 2023
1 parent 3fc99e1 commit cbab56a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ def _download_and_extract(self, filename: str) -> pathlib.Path:
source_url = "http://download.openzim.org/release/libzim"
if self.is_nightly:
source_url = f"http://download.openzim.org/nightly/{self.libzim_dl_version}"
if self.platform == "Linux" and not self.is_musl:
# temp hack
if self.arch == "aarch64" and self.platform == "Linux" and not self.is_musl:
source_url = "http://tmp.kiwix.org/ci"
url = f"{source_url}/{fpath.name}"

Expand Down

0 comments on commit cbab56a

Please sign in to comment.