Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
62c673c4
"vscode:/vscode.git/clone" did not exist on "cfe3f29686673fecc5d4b05ab2ed1b9bca476950"
Unverified
Commit
62c673c4
authored
Jul 30, 2024
by
Yineng Zhang
Committed by
GitHub
Jul 30, 2024
Browse files
docs: add set up runner (#829)
parent
377c5dc9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
docs/en/setup_runner.md
docs/en/setup_runner.md
+29
-0
No files found.
docs/en/setup_runner.md
0 → 100644
View file @
62c673c4
# Set up self hosted runner for GitHub Action
## Config Runner
```
bash
# https://github.com/sgl-project/sglang/settings/actions/runners/new?arch=x64&os=linux
# Involves some TOKEN and other private information, click the link to view specific steps.
```
## Start Runner
add
`/lib/systemd/system/runner.service`
```
[Unit]
StartLimitIntervalSec=0
[Service]
Restart=always
RestartSec=1
ExecStart=/home/lmzheng/zhyncs/actions-runner/run.sh
[Install]
WantedBy=multi-user.target
```
```
bash
sudo
systemctl daemon-reload
sudo
systemctl start runner
sudo
systemctl
enable
runner
sudo
systemctl status runner
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment