Apparently you can't compile sqlite3 with musl so that feature is disabled by default.
ENSBCPSWCSUDQP3HG6NFTUX7CYRP3GMPOKFP4ZLFGJQ5XJ52425AC
upload_url: ${{ github.event.release.upload_url }}
asset_content_type: application/octet-stream
linux-x86_64-gnu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
- name: Build binary
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Optimize and package binary
run: |
cd target/release
strip histdb-rs
chmod +x histdb-rs
tar -c histdb-rs | gzip > histdb-rs.tar.gz
- name: Upload binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
asset_name: histdb-rs-${{ github.event.release.tag-name }}-linux-x86_64-gnu.tar.gz
asset_path: target/release/histdb-rs.tar.gz