Implement ingestor of Perfetto traces using RPC #93
Workflow file for this run
This file contains hidden or 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: It is alive! | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Cache Rust build state | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Build release binaries | |
| run: make | |
| - name: Smoke test release exporter loading | |
| run: make test-exporter-release-smoke |