diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-02-02 12:29:45 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-02-02 12:29:45 +0100 |
commit | cc34369216d747d9d6721475d344cd458891e6a0 (patch) | |
tree | 00c7305459e90a5a8b045ac32398191172148ddd /Makefile | |
parent | 0341d7997d2f955d9bd0915ee3ca0f8fc448577e (diff) | |
download | fuzzycat-cc34369216d747d9d6721475d344cd458891e6a0.tar.gz fuzzycat-cc34369216d747d9d6721475d344cd458891e6a0.zip |
try out xar
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -25,6 +25,13 @@ fmt: ## Apply import sorting and yapf source formatting on all files dist: ## Create source distribution and wheel python setup.py sdist bdist_wheel +# https://engineering.fb.com/2018/07/13/data-infrastructure/xars-a-more-efficient-open-source-system-for-self-contained-executables/ +# +# Required a build from source https://github.com/vasi/squashfuse, to get the squashfuse_ll (low level) executable. +.PHONY: xar +xar: ## Create a XAR standalone package (https://github.com/facebookincubator/xar, https://github.com/vasi/squashfuse) + python setup.py bdist_xar + .PHONY: cov cov: ## Run coverage report pytest --cov=fuzzycat fuzzycat/*.py tests/ # --cov-report annotate:cov_annotate --cov-report html |