GithubHelp home page GithubHelp logo

pombredanne / minion-ci Goto Github PK

View Code? Open in Web Editor NEW

This project forked from timofurrer/minion-ci

0.0 1.0 0.0 148 KB

minimalist, decentralized, flexible Continuous Integration Server for hackers.

License: MIT License

Makefile 0.15% Python 80.58% CSS 4.64% HTML 14.62%

minion-ci's Introduction

minion-ci

Latest version released on PyPi Package license

minion-ci is a minimalist, decentralized, flexible Continuous Integration Server for hackers.

Index Page

Quickstart

Making your repository minion compatible is as easy as running this command in the root of your repository:

minion init

After that you should modify the minion.yml file in your repository to fit your needs. Make a nice commit and run the following command to start your first job:

git minion

Installation

It's recommended to use pip to install minion-ci:

pip3 install minion-ci

MongoDB: To persist the job data minion-ci uses MongoDB. Make sure you have MongoDB installed ...

apt-get install mongodb
yum install mongodb

... and an instance is running:

ps -ef | grep mongod

... eventually start one with:

mongod

minion.yml File Format

The minion-ci server will clone your repository and parse a file called minion.yml located in the root of the cloned repository. The format is really simple:

# command which is run before the real command
precondition: "echo 'I was run before the test ...'"
# the test command
command: "echo 'This is my test...'"
on:
  # command which is run if the command was successful
  success: "echo 'I was run because the test was successful ...'"
  # command which is run if the command failed
  failure: "echo 'I was run because the test failed ...'"

minion.yml Receipts

The following few sections explain how to setup a minion.yml file for different kind of environments and technologies, like python virtualenvs, docker containers, etc.

Why so complicated? ... Well it's not really complicated, isn't it? There are just to many different styles of test environments and approaches ... I don't want to give full attention to all of them and support them. And anyway ... In the end your Use-Case wouldn't be supported. Thus, we provide each developer the full control over their own test setup and environment. Setup it up how you like and run your test how you like it. But: Here are some receipts which might help you to come up with a nice minion.yml configuration:

Python virtualenv

To test your code in a python virtualenv base your minion.yml on the following example:

precondition: >
  /bin/bash -c 'virtualenv env -p python3.4 &&
  source env/bin/activate && python -m pip install . -r requirements-dev.txt'
command: /bin/bash -c 'source env/bin/activate && make test'

Make sure you change the actual test command which in the example's case is make test. You can also easily integrate it with tox. Just make sure tox is installed and run as your test command.

Docker

To test your code in a docker container follow the following example to setup your minion.yml:

precondition: /bin/bash -c 'docker pull ubuntu'
command: /bin/bash -c 'docker run -t ubuntu /bin/bash -c "make test"'

This will pull a new ubuntu docker image from docker hub and run make test in the container. You might want to setup your own docker image in the precondition and the run this container in the actual command:

precondition: /bin/bash -c 'docker build -t testing .'
command: /bin/bash -c 'docker run -t testing /bin/bash -c "make test"'

Make sure you mount your repository, source code, test code or whatever in the container before running any tests.

Server API

Route HTTP Method Parameter Description
/status GET Get status of the server
/jobs GET page, page_size Get a list of all jobs
/jobs POST repo_url, commit_hash, branch, keep_data, arbitrary data Create a new job
/jobs DELETE Remove all jobs
/jobs/<job_id> GET Get a single job
/jobs/<job_id> DELETE Remove a single job

minion-ci's People

Contributors

timofurrer avatar 11mariom avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.