forked from awslabs/aws-service-catalog-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.Project
More file actions
23 lines (18 loc) · 749 Bytes
/
Makefile.Project
File metadata and controls
23 lines (18 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: bump-patch bump-minor bump-major clean prepare-for-testing
## @Project_setup Increment patch number
bump-patch:
poetry version patch
## @Project_setup Increment minor number
bump-minor:
poetry version minor
## @Project_setup Increment major number
bump-major:
poetry version major
## @Project_setup Cleans up after a build
clean:
rm -rf data results output config.yaml
rm -rf dist aws-service-catalog-puppet-* aws_service_catalog_puppet.egg-info/ reports
## @Project_setup Generates a setup.py so you can test bootstrapped branches in AWS Codecommit
prepare-for-testing: build
tar -zxvf dist/aws-service-catalog-puppet-*.tar.gz -C dist aws-service-catalog-puppet-*/setup.py
mv dist/aws-service-catalog-puppet-*/setup.py setup.py