add jenkins

This commit is contained in:
Malin Freeborn 2023-07-18 16:20:02 +02:00
parent 4d7bec641c
commit 30352efd88
Signed by: andonome
GPG Key ID: 52295D2377F4D70F
1 changed files with 30 additions and 0 deletions

30
distros/void/jenkins.md Normal file
View File

@ -0,0 +1,30 @@
---
title: "jenkins"
tags: [ "void", "build" ]
---
# Jenkins on Void
Jenkins is janky.
## Start
Start the service file.
```bash
sudo ln -s /etc/sv/jenkins /var/service
sudo sv start jenkins
```
Then visit the web interface with `$BROWSER localhost:8080`.
If it's not working, try running the command from the run file the first time:
```bash
chpst -u jenkins java -jar /opt/jenkins/jenkins.war
```
## Updating
Jenkins will not work if out of date.
You will be prompted to update by downloading a `jenkins.war` file.
Download it, then stop the service, and move the file to `/opt/jenkins/jenkins.war`, then start the service again.