Simple dashboard to aggregate results of multiple jobs from multiple heterogeneous CI servers.
Currently supports the following CI servers:
- Jenkins
- GitLab CI
- TeamCity
- Configurable from yaml
- Show the builds for a customizable period (change with mouse scroll)
- Move the shown period with dragging
- Click through to get to the job page and build page
- Auto-refesh
- The config file is read from
$WORKING_DIR/config
or$HOME/.pipeline_board/config
(fallback) - For trying it out you can download example_config and rename it to config. This will set it up to use public repositories as examples.
- Download latest release (download the zip but not the source)
- Extract
chmod +x bin/pipeline-board
- cd into the directory then run:
bin/pipeline-board [-Dhttp.port=<port>]
. The default port is 9000 if-Dhttp.port
is not specified. The config has to be present either in that directory or in$HOME/.pipeline_board/config(fallback)
- If you get
This application is already running
message you need to removeRUNNING_PID
in the directory.
- To run, clone it and run
sbt "server/run [<port>]"
where the<port>
is optionally the port. If not specified it defaults to 9000.
title: Example projects
fetchFrequency: # optional
minutes: 10
gitlabNumberOfBuildPagesToQuery: 5 # optional
groups:
- groupName: First group
jenkins:
jobs:
- name: ELK
url: https://ci.eclipse.org/elk/job/ElkMetaNightly/
accessToken: 'sometoken' # Optional, have to be used together with user
user: someuser # Optional, have to be used together with accessToken
teamCity:
jobs:
- name: Build Ant using Maven
url: https://teamcity.jetbrains.com/viewType.html?buildTypeId=ApacheAnt_BuildAntUsingMave
# accessToken for teamCity is not supported
- groupName: Second group
gitLabCi:
jobs:
- name: Some project on GitLab CI
url: https://gitlab.com/someproject
jobNameOnGitLab: name-of-job
accessToken: 'sometoken' # optional