https://github.com/polidea/pixie-ci-service
Translate your CI service statuses to PIXIE-compatible format.
https://github.com/polidea/pixie-ci-service
Last synced: 18 days ago
JSON representation
Translate your CI service statuses to PIXIE-compatible format.
- Host: GitHub
- URL: https://github.com/polidea/pixie-ci-service
- Owner: Polidea
- Created: 2016-03-02T15:12:45.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-02T15:16:10.000Z (over 10 years ago)
- Last Synced: 2025-10-26T04:43:18.867Z (9 months ago)
- Language: JavaScript
- Homepage: https://www.polidea.com/blog/PIXIE_-_continuous_integration_status_light-1/
- Size: 3.91 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PIXIE CI service
Translate your CI service statuses to PIXIE-compatible format.
#### Currently supported
- Travis CI
## Running Locally
Make sure you have [Node.js 5.x](http://nodejs.org/).
```sh
$ npm install
$ npm start
```
Your app should now be running on localhost:5000.
You can test it by making `GET` request to [http://localhost:5000/https://travis-ci.org/Polidea/ios-class-guard](http://localhost:5000/https://travis-ci.org/Polidea/ios-class-guard).
This will get status for `Polidea/ios-class-guard` project.
## Deploying to Heroku
[](https://heroku.com/deploy)
or
Install [Heroku Toolbelt](https://toolbelt.heroku.com/) and
```
$ heroku create
$ git push heroku master
```
## Documentation
PIXIE requires to receive data in format
```json
{
"status": "running",
"time": 41,
"previous_status": "failed",
"previous_time": 364
}
```
`status` and `previous_status` can be:
- running
- failed
- success
- canceled
`time` and `previous_time` is duration of build in seconds.
Making a request to PIXIE CI service with `/`, for example `/travis-ci.org/Polidea/ios-class-guard` returns status for this project in the format above.