-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Development section to README.md
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,6 +151,22 @@ Use the fast command (equivalent to `--auto --build --reinst --quiet`) to build | |
|
||
debtool --fast DIRECTORY | ||
|
||
## Development | ||
|
||
To run tests (note that [Travis CI](https://travis-ci.org/brbsix/debtool) runs tests upon push): | ||
|
||
`make test` | ||
|
||
To create a new release: | ||
|
||
1. Bump VERSION in `debtool` | ||
2. Edit the download instructions in README.md to reflect the new version | ||
3. Build the *.deb* with `make deb` and update the changelog when prompted | ||
4. Commit the changes (excluding the *.deb* package) | ||
5. Tag the release (e.g. `git tag v0.0.1`) | ||
6. Push the release (e.g. `git push origin v0.0.1` or `git push origin --tags`) | ||
7. Attach the *.deb* package to the release via GitHub's web interface (this keeps builds out of the repo history) | ||
|
||
## License | ||
|
||
Copyright (c) 2015 Six <[email protected]> | ||
|