Mercurial > repos > jpayne > refchooser
comparison Makefile @ 0:91bc7378c1c5 draft
planemo upload commit c5b9a5678302366ab392fc9b24104509beb07c38-dirty
| author | jpayne |
|---|---|
| date | Mon, 11 Aug 2025 15:37:26 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:91bc7378c1c5 |
|---|---|
| 1 .PHONY: help | |
| 2 | |
| 3 help: ## Show this help message | |
| 4 @echo "Usage: make [target]" | |
| 5 @echo "" | |
| 6 @echo "Targets:" | |
| 7 @grep -E '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) | \ | |
| 8 awk 'BEGIN {FS = ":.*?## "}; {printf " %-10s %s\n", $$1, $$2}' | |
| 9 | |
| 10 .setup_done: ## Set up development environment | |
| 11 @echo "Setting up development environment..." | |
| 12 pipx install planemo | |
| 13 @touch .setup_done | |
| 14 | |
| 15 test: .setup_done ## Run tests | |
| 16 @echo "Running tests..." | |
| 17 planemo t --no_wait --galaxy_branch release_24.2 --skip_venv --biocontainers --job_config_file job_conf.yml --job_output_files ./.testing | |
| 18 | |
| 19 lint: .setup_done ## Run linter | |
| 20 @echo "Running linter..." | |
| 21 planemo l | |
| 22 | |
| 23 upload: .setup_done ## Upload package | |
| 24 @echo "Uploading package..." | |
| 25 planemo shed_update --shed_target toolrepo --force_repository_creation |
