Skip to content

Commit 2e03575

Browse files
authored
fix(pyroscope-cli): build (#207)
Signed-off-by: Tolya Korniltsev <[email protected]>
1 parent a5280fe commit 2e03575

26 files changed

+451
-2048
lines changed

.github/workflows/cli.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: pyroscope-cli
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
linux-build:
9+
name: Linux build
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- run: rustup toolchain install stable && rustup default stable
14+
- run: cargo build -p pyroscope-cli
15+
16+
linux-build-docker:
17+
name: Linux build docker
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
- run: make cli/docker-image

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.venv/
2+
.env/
3+
14
.idea/
25
/target/
36
**/*.rs.bk

0 commit comments

Comments
 (0)