Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ProboCI/probo
Open source continuous integration and quality assurance.
https://github.com/ProboCI/probo
continuous-integration docker javascript node probo quality-assurance
Last synced: about 1 month ago
JSON representation
Open source continuous integration and quality assurance.
- Host: GitHub
- URL: https://github.com/ProboCI/probo
- Owner: ProboCI
- License: apache-2.0
- Created: 2014-05-03T05:10:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-19T19:15:24.000Z (2 months ago)
- Last Synced: 2024-11-10T03:42:17.244Z (about 2 months ago)
- Topics: continuous-integration, docker, javascript, node, probo, quality-assurance
- Language: JavaScript
- Homepage:
- Size: 1.95 MB
- Stars: 78
- Watchers: 28
- Forks: 23
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Probo
[Probo.ci](http://probo.ci) is an open source continuous integration and quality assurance tool
that lets you build branches and pull requests inside docker containers,
reports back on the progress of each step, and then _keeps the environment
around_ and gives you a link so that you can go and preview the work in a
shared space.Probo has a [Service Oriented Architecture](https://en.wikipedia.org/wiki/Service-oriented_architecture) so to
get the full picture have a look at all of the projects in the [Probo Organization](https://github.com/ProboCI).
This project currently contains the Container Manager (which provides a high level interface to docker) and
the GitHub Handler (responsible for receiving data from and sending data to github). In the long term these
services will be factored out into their own projects and this project will be a packaging project making it
easy to install compatible versions of all of the individual services.## Quickstart
See the [Quickstart](QUICKSTART.md) guide for how to get up and running with your own instance of Probo
## Compatibility
The code uses generators and requires node `io.js` or `node` 12.x+.
### Node Version
Several of Probo's microservices are currently on different Node versions as we update to newer Node versions, so the Node Verson Manager, [nvm](https://github.com/nvm-sh/nvm), is installed to switch between different versions of Node prior to running `npm install`.
**Current Node Version:** Node 16.x (Current default Node version)
Run the following commands in the `probo` installation directory to update the node_modules for probo.
nvm use default
npm install## Error Codes
Errors are thrown when a build cannot be found however there are man reasons a
build may not be found. These include:- Build has been reaped
- Build is currently still building
- Build id is invalid or does not existWe return a 404 when a build cannot be found. However for the sake of
integration with other services, the error response will be a JSON object
with an errorCode:- 410R: Build reaped
- 423P: Build in progress
- 400I: Build id invalid
- 404N: Build id not found