-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add cgroupv2 support for linux * Use python instead of python.exe in examples * Add sentinel to linux cgroup to kill cgroup if launcher crashes * Add ubuntu 22.04 ci tests * ubuntu pip in ci * Ubuntu ci setuptools * Ubuntu ci upgrade pip * Change ownership of ubuntu ci cgroup for testing * Fix cgroup sentinel program group * Fix asyncio loop warning
- Loading branch information
Showing
4 changed files
with
243 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: example_http_servers | ||
tasks: | ||
- name: http_server | ||
program: python.exe | ||
program: python | ||
args: | ||
- "example_http_server.py" | ||
- 8100 | ||
- "Hello from server 1" | ||
cwd: . | ||
- name: http_client | ||
program: curl.exe | ||
program: curl | ||
args: http://localhost:8100 | ||
start-delay: 2 | ||
quit-on-terminate: true |
Oops, something went wrong.