Skip to content

codescout/codescout-runner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

codescout-runner

This project is one of the components used by Code Scout to initialize and execute code analysis reports. It does not generate reports by itself but provides an environment that's ready for further code examination by codescout-analyzer. Runner application is designed to be executed inside a Docker container, which provides an isolated environment, but could also be used natively. Used by codescout-worker.

Workflow:

  • Fetches code push details from main application. Push includes git repository URL, commit details and necessary ssh keys (generated per project) needed to clone a private repository.
  • Clones repository and checks out a specific git commit pushed by user
  • If repository is private, installs ssh keys (id_rsa and id_rsa.pub)
  • Executes codescout analyzer that produced a JSON report using Flog, Flay and other tools
  • Submits a generated report back to main application

Installation

Install from rubygems:

gem install codescout-runner

Or clone repository and build locally:

rake install

Usage

To trigger a report build for known push, execute the following command:

CODESCOUT_URL=http://myhost CODESCOUT_PUSH=push_token codescout-runner

Where:

  • CODESCOUT_URL - Code scout application URL (self hosted)
  • CODESCOUT_PUSH - Push token

Also possible to execute from ruby code:

require "codescout/runner"
Codescout::Runner.perform("url", "push")

Testing

This project uses RSpec as a primary testing framework. Execute tests with following command:

bundle exec rake test

License

The MIT License (MIT)

Copyright (c) 2014 Doejo LLC, [email protected]

About

Generate and submit code metrics reports to Code Scout

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages