swift_package_stop
Stop a running Swift Package executable by providing its process ID (PID) to ensure proper termination on the sl-test server.
Instructions
Stops a running Swift Package executable started with swift_package_run
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pid | Yes | Process ID (PID) of the running executable |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pid": {
"description": "Process ID (PID) of the running executable",
"type": "number"
}
},
"required": [
"pid"
],
"type": "object"
}