Skip to content

Commit 1bc0480

Browse files
committed
added Makefile
1 parent b2d08a5 commit 1bc0480

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Makefile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
BUNDLE_DIR ?= .bundle
2+
3+
build:
4+
puppet module build
5+
6+
changelog:
7+
github_changelog_generator -u hep-puppet -p htcondor
8+
9+
release: build changlelog
10+
11+
verify: bundle_install
12+
bundle exec rake test
13+
14+
bundle_install:
15+
bundle install --path $(BUNDLE_DIR)
16+
17+
acceptance: bundle_install
18+
exit 0
19+
#bundle exec rake beaker:default
20+
21+
test:
22+
bundle exec rake lint

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,6 @@ and make sure no errors are present when submitting code.
109109

110110
### Generating changlelog
111111
```
112+
export CHANGELOG_GITHUB_TOKEN<your github token>
112113
github_changelog_generator -u hep-puppet -p htcondor
113114
```

0 commit comments

Comments
 (0)