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

chore: update CI (add rustc 1.81) #44

Merged
merged 2 commits into from
Sep 15, 2024
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
rustc_sup_version: [ 1.76.0, 1.77.0, 1.78.0, 1.79.0, 1.80.0 ]
rustc_sup_version: [ 1.77.0, 1.78.0, 1.79.0, 1.80.0, 1.81.0 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Install actual rustc
uses: actions-rs/toolchain@v1
with:
toolchain: 1.80.0
toolchain: 1.81.0
override: true
components: rustfmt, clippy
- name: Run functional tests on own stack unwind implementation
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.80.0
toolchain: 1.81.0
override: true
components: rustfmt, clippy
- name: Set up Python 3.7
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.80.0
toolchain: 1.81.0
override: true
components: rustfmt, clippy
- name: Install libunwind
Expand Down
3 changes: 1 addition & 2 deletions src/debugger/debugee/tracee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ impl Tracee {
);

sys::ptrace::cont(self.pid, sig)
.map(|ok| {
.inspect(|_| {
self.update_status(Running);
ok
})
.map_err(Ptrace)
}
Expand Down
Loading