Add missing step to start the Forgejo runner
Some checks are pending
Some checks are pending
This commit is contained in:
parent
71fe38d581
commit
449000dfb3
1 changed files with 18 additions and 1 deletions
|
@ -927,7 +927,24 @@ sudo systemctl daemon-reload
|
||||||
sudo systemctl enable forgejo-runner.service
|
sudo systemctl enable forgejo-runner.service
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 7.4 Test Runner Configuration
|
#### 7.4 Start Service
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Start the Forgejo runner service
|
||||||
|
sudo systemctl start forgejo-runner.service
|
||||||
|
|
||||||
|
# Verify the service is running
|
||||||
|
sudo systemctl status forgejo-runner.service
|
||||||
|
```
|
||||||
|
|
||||||
|
**Expected Output**: The service should show "active (running)" status.
|
||||||
|
|
||||||
|
**What this does**:
|
||||||
|
- Starts the Forgejo runner daemon as a system service
|
||||||
|
- The runner will now be available to accept and execute workflows from your Forgejo instance
|
||||||
|
- The service will automatically restart if it crashes or the system reboots
|
||||||
|
|
||||||
|
#### 7.5 Test Runner Configuration
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Check if the runner is running
|
# Check if the runner is running
|
||||||
|
|
Loading…
Add table
Reference in a new issue