Skip to content

Commit

Permalink
In deb package, include ssl and mbtiles tool
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Sep 26, 2023
1 parent 5ade7cd commit 88f71b7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
rm -rf target
env:
DATABASE_URL: ${{ steps.pg.outputs.connection-uri }}
- name: Download build result
- name: Download build artifact build-${{ matrix.target }}
uses: actions/download-artifact@v3
with:
name: build-${{ matrix.target }}
Expand Down Expand Up @@ -308,8 +308,8 @@ jobs:
- target: aarch64-apple-darwin
os: ubuntu-latest
name: martin-Darwin-aarch64.tar.gz
sha: 'true'
cross: 'true'
sha: 'true'
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
name: martin-Linux-aarch64.tar.gz
Expand All @@ -332,7 +332,8 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- name: Download build artifact build-${{ matrix.target }}
uses: actions/download-artifact@v3
with:
name: build-${{ matrix.target }}
path: target/
Expand Down
9 changes: 6 additions & 3 deletions martin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ homepage.workspace = true

[package.metadata.deb]
name = "martin"
maintainer = "Stepan Kuzmin <[email protected]>, Yuri Astrakhan <[email protected]>, MapLibre contributors"
depends = "$auto"
revision = ""
maintainer = "Yuri Astrakhan <[email protected]>, Stepan Kuzmin <[email protected]>, MapLibre contributors"
maintainer-scripts = "../debian"
depends = "$auto"
features = ["ssl"]
assets = [
["target/release/martin", "/usr/bin/martin", "755"],
["../README.md","/usr/share/doc/martin/README.md","644"],
["target/release/mbtiles", "/usr/bin/mbtiles", "755"],
["../README.md", "/usr/share/doc/martin/README.md", "644"],
["../debian/config.yaml", "/usr/share/doc/martin/config.yaml", "644"],
["../debian/config.yaml", "/usr/local/etc/martin/config.yaml", "644"],
]
Expand Down

0 comments on commit 88f71b7

Please sign in to comment.