Project

gitarro

0.03
Low commit activity in last 3 years
No release in over a year
gitarro run tests on GitHub PRs using almost any script,language or binary, it integrate easy with other tools.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.9
~> 3.6
~> 0.49
>= 12.3.3

Runtime

~> 0.6
~> 0.11
~> 4.7
<= 1.10.2
 Project Readme

Build Status Master branch Gem Version awesome-badge

Table of Content

Introduction

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

    GITHUB_USER=INSERT GITHUB_PWD_OR_TOKEN=foo echo "machine api.github.com login $GITHUB_USER password $GITHUB_PWD_OR_TOKEN" > ~/.netrc
    sudo chmod 0600 ~/.netrc
  2. 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
  3. 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

Contributor and Maintainers:

  • @juliogonzalez
  • @srbarrios
  • @MalloZup

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

Extra

Gitarro is part of the curate list Awesome Ruby