Compare commits
2 Commits
8d82572f83
...
0cf7f9e978
Author | SHA1 | Date |
---|---|---|
|
0cf7f9e978 | |
|
19d55ecfd2 |
|
@ -0,0 +1,69 @@
|
|||
toaster.do Jenkins backend
|
||||
==========================
|
||||
|
||||
These python modules serve as the Jenkins backend to the Devuan SDK's
|
||||
Web interface. They are to be executed by the web CGI when a new build
|
||||
is requested.
|
||||
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
|
||||
This backend is configured using two files. `config.py` and
|
||||
`jenkins_creds.py`. The former contains variables that tell the backend
|
||||
in what way to work and where to look for files. The latter -
|
||||
`jenkins_creds.py` is not included in the git repository as it contains
|
||||
important credentials which allow the backend to work with Jenkins' API.
|
||||
|
||||
The `jenkins_creds.py` file should look like the following:
|
||||
```
|
||||
jenkins_host = 'https://sdk.dyne.org:4443'
|
||||
jenkins_user = 'toaster'
|
||||
jenkins_pass = 'thetoasterpassword'
|
||||
```
|
||||
|
||||
These files will be read and imported by `sync_jobs.py` when ran.
|
||||
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
```
|
||||
usage: sync_jobs.py [-h] [-a] [-d] [-n] jobname
|
||||
|
||||
positional arguments:
|
||||
jobname
|
||||
|
||||
optional arguments:
|
||||
-h, --help show this help message and exit
|
||||
-a, --add
|
||||
-d, --delete
|
||||
-n, --dryrun
|
||||
```
|
||||
|
||||
The `jobname` argument should be in a specific format. It should contain
|
||||
the requester's email, which sdk was chosen, the requested architecture,
|
||||
and a timestamp.
|
||||
|
||||
In case of vm-sdk or live-sdk, these would look like:
|
||||
|
||||
```
|
||||
parazyd@dyne.org-vm_amd64-1537977964
|
||||
parazyd@dyne.org-live_amd64-1537977964
|
||||
```
|
||||
|
||||
In case of arm-sdk, we also need to know the board we're building for:
|
||||
|
||||
```
|
||||
parazyd@dyne.org-arm_armhf_sunxi-1537977964
|
||||
```
|
||||
|
||||
All of this combined, the required command to add a new job to Jenkins
|
||||
would look something like the following:
|
||||
|
||||
```
|
||||
sync_jobs.py -a parazyd@dyne.org-vm_amd64-1537977964
|
||||
```
|
||||
|
||||
In case of removing an existing job, all of the above applies the same
|
||||
way. You just have to use `-d` instead of `-a`.
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
# Physical path to where jobs are held
|
||||
jobpath = '/srv/toaster'
|
|
@ -0,0 +1,99 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Module for backend talk with Jenkins executed by the web/CGI
|
||||
"""
|
||||
|
||||
from argparse import ArgumentParser
|
||||
from jenkins import Jenkins
|
||||
|
||||
from config import jobpath
|
||||
from jenkins_creds import (jenkins_host, jenkins_user, jenkins_pass)
|
||||
|
||||
|
||||
def html_escape(string):
|
||||
"""
|
||||
Function for escaping certain symbols to XML-compatible sequences.
|
||||
"""
|
||||
html_codes = [("'", '''), ('"', '"'), ('&', '&'),
|
||||
('<', '<'), ('>', '>')]
|
||||
for i in html_codes:
|
||||
string = string.replace(i[0], i[1])
|
||||
|
||||
return string
|
||||
|
||||
|
||||
def add_job(japi, jobname):
|
||||
"""
|
||||
Function for adding a job to Jenkins.
|
||||
"""
|
||||
info = jobname.split('-')
|
||||
desc = 'WebSDK build for: %s\nStarted: %s' % (info[0], info[2])
|
||||
sdk = info[1].split('_')[0]
|
||||
arch = info[1].split('_')[1]
|
||||
blendfile = '%s/%s/Dockerfile' % (jobpath, jobname)
|
||||
|
||||
if sdk == 'arm':
|
||||
board = info[1].split('_')[2]
|
||||
zshcmd = 'load devuan %s %s' % (board, blendfile)
|
||||
elif sdk == 'live':
|
||||
zshcmd = 'load devuan %s %s' % (arch, blendfile)
|
||||
elif sdk == 'vm':
|
||||
zshcmd = 'load devuan %s' % (blendfile)
|
||||
|
||||
command = "zsh -f -c 'source sdk && %s && build_image_dist'" % zshcmd
|
||||
command = html_escape(command)
|
||||
|
||||
replacements = [('DESC', desc),
|
||||
('SDK', sdk),
|
||||
('ARCH', arch),
|
||||
('COMMAND', command)]
|
||||
|
||||
sdk_job = open('toasterbuild.xml', encoding='utf-8').read()
|
||||
|
||||
for i in replacements:
|
||||
sdk_job = sdk_job.replace('{{{%s}}}' % i[0], i[1])
|
||||
|
||||
return japi.create_job(jobname, sdk_job)
|
||||
|
||||
|
||||
def del_job(japi, jobname):
|
||||
"""
|
||||
Function for deleting a Jenkins job.
|
||||
"""
|
||||
return japi.delete_job(jobname)
|
||||
|
||||
|
||||
def main():
|
||||
"""
|
||||
Main routine.
|
||||
"""
|
||||
parser = ArgumentParser()
|
||||
parser.add_argument('-a', '--add', action='store_true')
|
||||
parser.add_argument('-d', '--delete', action='store_true')
|
||||
parser.add_argument('-n', '--dryrun', action='store_true')
|
||||
parser.add_argument('jobname')
|
||||
# NOTE: jobname should be email-arch-date, and a predefined directory
|
||||
# somewhere on the filesystem. e.g.:
|
||||
# - parazyd@dyne.org-vm_amd64-198374198
|
||||
# - parazyd@dyne.org-arm_armhf_raspi2-2198361991
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
japi = Jenkins(jenkins_host, username=jenkins_user, password=jenkins_pass)
|
||||
|
||||
if args.add:
|
||||
if args.dryrun:
|
||||
print('Would add:', args.jobname)
|
||||
return
|
||||
print('Adding job:', args.jobname)
|
||||
add_job(japi, args.jobname)
|
||||
elif args.delete:
|
||||
if args.dryrun:
|
||||
print('Would remove:', args.jobname)
|
||||
return
|
||||
print('Removing job:', args.jobname)
|
||||
del_job(japi, args.jobname)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
|
@ -0,0 +1,59 @@
|
|||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<project>
|
||||
<actions/>
|
||||
<description>{{{DESC}}}</description>
|
||||
<keepDependencies>false</keepDependencies>
|
||||
<properties>
|
||||
<com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty plugin="gitlab-plugin@1.5.10">
|
||||
<gitLabConnection></gitLabConnection>
|
||||
</com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty>
|
||||
</properties>
|
||||
<scm class="hudson.plugins.git.GitSCM" plugin="git@3.9.1">
|
||||
<configVersion>2</configVersion>
|
||||
<userRemoteConfigs>
|
||||
<hudson.plugins.git.UserRemoteConfig>
|
||||
<url>https://git.devuan.org/sdk/{{{SDK}}}-sdk</url>
|
||||
</hudson.plugins.git.UserRemoteConfig>
|
||||
</userRemoteConfigs>
|
||||
<branches>
|
||||
<hudson.plugins.git.BranchSpec>
|
||||
<name>*/master</name>
|
||||
</hudson.plugins.git.BranchSpec>
|
||||
</branches>
|
||||
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
||||
<submoduleCfg class="list"/>
|
||||
<extensions/>
|
||||
</scm>
|
||||
<assignedNode>{{{ARCH}}}</assignedNode>
|
||||
<canRoam>false</canRoam>
|
||||
<disabled>false</disabled>
|
||||
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
||||
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
||||
<triggers/>
|
||||
<concurrentBuild>false</concurrentBuild>
|
||||
<builders>
|
||||
<hudson.tasks.Shell>
|
||||
<command>
|
||||
git submodule update --init --recursive --checkout
|
||||
{{{COMMAND}}}
|
||||
</command>
|
||||
</hudson.tasks.Shell>
|
||||
</builders>
|
||||
<publishers>
|
||||
<hudson.tasks.ArtifactArchiver>
|
||||
<artifacts>dist/*</artifacts>
|
||||
<allowEmptyArchive>false</allowEmptyArchive>
|
||||
<onlyIfSuccessful>false</onlyIfSuccessful>
|
||||
<fingerprint>false</fingerprint>
|
||||
<defaultExcludes>true</defaultExcludes>
|
||||
<caseSensitive>true</caseSensitive>
|
||||
</hudson.tasks.ArtifactArchiver>
|
||||
</publishers>
|
||||
<buildWrappers>
|
||||
<hudson.plugins.ws__cleanup.PreBuildCleanup plugin="ws-cleanup@0.34">
|
||||
<deleteDirs>false</deleteDirs>
|
||||
<cleanupParameter></cleanupParameter>
|
||||
<externalDelete></externalDelete>
|
||||
</hudson.plugins.ws__cleanup.PreBuildCleanup>
|
||||
</buildWrappers>
|
||||
</project>
|
Loading…
Reference in New Issue