/gitbot-1

Primary LanguageRubyMIT LicenseMIT

gitarro

GUNDAM image GUNDAM image

Build Status Master branch Gem Version

Table of Content

gitarro allow you to run tests on Git Hub Pull Requests (also known as PRs) using almost any script, language or binary and providing easy integration with other tools, and testing env. (such containers, cloud, VMS, etc.)

It can run on any system that is able to use ruby and octokit.

Install

gem install gitarro

Quickstart

  1. Setup the netrc file
echo "machine api.github.com login $GITHUB_USER password $GITUB_PWD_OR_TOKEN > /~.netrc"
sudo chmod 0600 ~/.netrc
  1. Create a test script for running against PRs
echo "#! /bin/bash" > /tmp/tests.sh
echo "exit 0" > /tmp/tests.sh
chmod +x /tmp/tests.sh
  1. Run gitarro against your GitHub project.

$YOUR_GITHUB_PROJECT=MalloZup/gitarro

gitarro.rb -r $YOUR_GITHUB_PROJECT -c "ruby-test" -t /tmp/tests.sh --https"

Authors:

  • Dario Maiocchi

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details