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

internal: Rework process handling. #1790

Open
wants to merge 20 commits into
base: develop-1.32
Choose a base branch
from
Open
1 change: 1 addition & 0 deletions .moon/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ projects:
- './packages/*'
- '!packages/cli'
- '!packages/core-*'
- 'scenarios/*'
- 'website'

generator:
Expand Down
9 changes: 9 additions & 0 deletions .yarn/versions/c89cc34c.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
releases:
"@moonrepo/cli": minor
"@moonrepo/core-linux-arm64-gnu": minor
"@moonrepo/core-linux-arm64-musl": minor
"@moonrepo/core-linux-x64-gnu": minor
"@moonrepo/core-linux-x64-musl": minor
"@moonrepo/core-macos-arm64": minor
"@moonrepo/core-macos-x64": minor
"@moonrepo/core-windows-x64-msvc": minor
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

#### 🚀 Updates

- Reworked child process handling to properly handle signals and shutdown accordingly. Additionally,
when the pipeline receives a signal, we now display the status that shutdown the pipeline in the
summary.

## 1.31.2

#### 🚀 Updates
Expand Down
171 changes: 167 additions & 4 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions crates/action-pipeline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ moon_cache = { path = "../cache" }
moon_common = { path = "../common" }
moon_console = { path = "../console" }
moon_notifier = { path = "../notifier" }
moon_process = { path = "../process" }
moon_project = { path = "../project" }
moon_remote = { path = "../remote" }
moon_task = { path = "../task" }
Expand Down
Loading
Loading