Skip to content

Commit

Permalink
Add APT packages to results of 'search' and 'info' commands (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
hwittenborn authored Jul 11, 2022
1 parent 37f652a commit f2757a8
Show file tree
Hide file tree
Showing 19 changed files with 780 additions and 427 deletions.
2 changes: 1 addition & 1 deletion .drone/drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local deploy() = {
commands: [
"sudo chown 'makedeb:makedeb' ./ -R",
".drone/scripts/setup-pbmpr.sh",
"sudo apt-get install cargo libssl-dev pkg-config -y",
"sudo apt-get install cargo libssl-dev pkg-config libapt-pkg-dev -y",
"cargo fmt --check",
"cargo clippy -- -D warnings"
]
Expand Down
4 changes: 4 additions & 0 deletions .drone/scripts/publish-mpr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ makedeb --print-srcinfo | tee .SRCINFO
git add .
git commit -m "Bump version to '${pkgver}-${pkgrel}'"
git push

# Clean up, as crates.io publishing doesn't like a Git directory with uncommitted changes.
cd ../
rm "${pkgname}/" -rf
7 changes: 6 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
uses: actions/checkout@v3

- name: Run unit tests
run: .drone/scripts/run-tests.sh
run: |
sudo chown 'makedeb:makedeb' ./ -R
.drone/scripts/setup-pbmpr.sh
sudo apt-get install cargo libssl-dev pkg-config libapt-pkg-dev -y
cargo fmt --check
cargo clippy -- -D warnings
# vim: expandtab ts=2 sw=2
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0] - 2022-07-11
### Added
- Added APT integration to `search` and `info` commands.

## [0.3.4] 2022-07-11
### Changed
Internal changes used to test CI. No changes have been made for end users.
Expand Down
Loading

0 comments on commit f2757a8

Please sign in to comment.