pyroscope 0.5.3

Pyroscope Profiler Agent for continuous profiling of Rust, Python and Ruby applications.
Documentation
name: CI Rbspy Backend

on: 
  push:
    paths:
    - 'pyroscope_backends/pyroscope_rbspy/**'
    - '.github/workflows/ci-backend-rbspy.yml'
  pull_request:
    paths: 
    - 'pyroscope_backends/pyroscope_rbspy/**'
    - '.github/workflows/ci-backend-rbspy.yml'

jobs:
  build:
    name: ${{ matrix.os }} - ${{ matrix.target }}
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]
        target: [x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu, x86_64-apple-darwin, aarch64-apple-darwin]
        exclude:
        - os: ubuntu-latest
          target: x86_64-apple-darwin
        - os: ubuntu-latest
          target: aarch64-apple-darwin
        - os: macos-latest
          target: x86_64-unknown-linux-gnu
        - os: macos-latest
          target: aarch64-unknown-linux-gnu
    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Install stable toolchain
        uses: omarabid-forks/rs-toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true

      - name: Cargo build for Rbspy 
        uses: omarabid-forks/rs-cargo@v1
        with:
          args: --manifest-path pyroscope_backends/pyroscope_rbspy/Cargo.toml
          command: build

      - name: Tests for Rbspy 
        uses: omarabid-forks/rs-cargo@v1
        with:
          args: --manifest-path pyroscope_backends/pyroscope_rbspy/Cargo.toml
          command: test