Files
modelscope--ms-swift/Makefile
T
wehub-resource-sync a203934033
Lint test / lint (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:34:58 +08:00

26 lines
359 B
Makefile

WHL_BUILD_DIR :=package
DOC_BUILD_DIR :=docs/build/
# default rule
default: whl docs
.PHONY: docs
docs:
bash .dev_scripts/build_docs.sh
.PHONY: linter
linter:
bash .dev_scripts/linter.sh
.PHONY: test
test:
bash .dev_scripts/citest.sh
.PHONY: whl
whl:
python setup.py sdist bdist_wheel
.PHONY: clean
clean:
rm -rf $(WHL_BUILD_DIR) $(DOC_BUILD_DIR)