"vscode:/vscode.git/clone" did not exist on "cfe3f29686673fecc5d4b05ab2ed1b9bca476950"
Unverified Commit 62c673c4 authored by Yineng Zhang's avatar Yineng Zhang Committed by GitHub
Browse files

docs: add set up runner (#829)

parent 377c5dc9
# 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
```
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment