Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Capture client's callstacks with rstack #36

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
- name: Install Protoc
uses: arduino/setup-protoc@v2

- name: Install libunwind-dev
uses: ConorMacBride/install-package@v1
with:
apt: libunwind-dev

- name: Environment
run: |
cargo --version
Expand Down Expand Up @@ -69,6 +74,10 @@ jobs:
- name: Install Protoc
uses: arduino/setup-protoc@v2

- name: Install libunwind-dev
run: |
sudo apt update && sudo apt install -y libunwind-dev

- name: Environment
run: |
cargo --version
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/target
**/target
**/*.rs.bk
.vs
packages
Expand Down
4 changes: 4 additions & 0 deletions .idea/proxide.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

120 changes: 120 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,18 @@ wildmatch = "1"
glob = "0.3"
shell-words = "1"

[target.'cfg(unix)'.dependencies]
rstack = "0.3.3"

[dev-dependencies]
portpicker = "0.1.1"
grpc-tester = { version = "0.1.0", path = "test/rust_grpc"}
serial_test = "2.0.0"
lazy_static = "1.4.0"

[target.'cfg(unix)'.dev-dependencies]
rstack-self = "0.3.0"
rstack-launcher = { version = "0.1.0", path = "test/rstack-launcher" }

[profile.release]
debug = true
Loading
Loading