feat: the convert
command converts trace files to sqlite database
#160
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
name: Build binaries | |
on: | |
release: | |
types: [created] | |
push: | |
jobs: | |
release: | |
name: release ${{ matrix.target }} | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-musl | |
archive: tar.gz | |
- target: x86_64-apple-darwin | |
archive: zip | |
steps: | |
- uses: actions/checkout@master | |
- name: Build and release | |
uses: rust-build/rust-build.action@v1.4.3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
RUSTTARGET: ${{ matrix.target }} | |
ARCHIVE_TYPES: ${{ matrix.archive }} |