ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Travis-CI

by Dan Griffiths ST3

Simple Travis-CI integration for Sublime Text

Details

Installs

  • Total 590
  • Win 176
  • Mac 258
  • Linux 156
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Travis-CI

Simple Travis CI integration for Sublime Text 3

Installation

Package Control

  • Install Package Control
  • Run the “Package Control: Install Package” command from the command palette
  • Search for Travis-CI in the package list
NOTE: This is the recommended installation method.

Manual Installation

If you want to contribute to the plugin (or you're just weird and hate Package Control), you can clone the plugin repository by navigating to the “Packages” directory and running the following command:

git clone git://github.com/Section214/ST3-Travis-CI

I Can Haz Settings?

// Debug logging
// If enabled, this dumps debugging data to the console
//"debug_enable": true,

// By default, we look for git in your environment path.
// If your git executable isn't in path, you can set an
// absolute path here (but ask yourself why it isn't in
// your path in the first place!!!)
// "git": "/usr/bin/git",

// Set the name of the default remote to retrieve build
// status for. If none is specified, the standard 'origin'
// is used.
//"default_remote": "origin",

// Set the prefix for the status line item
//"status_prefix": "Travis: ",

// Set the text for the status line item when the build
// is passing.
//"status_passing": "Passing",

// Set the text for the status line item when the build
// is failing.
//"status_failing": "Failing",

// Per-repo settings
// At the moment, the only per-repo setting is the
// 'remote' setting. Allows you to override the default
// remote defined above on a per-repo basis.
//"repos": {
//    "Section214/ST3-Travis-CI": {
//        "remote": "upstream"
//    }
//},

// Browser settings
// Specify the browser to open Travis-CI in when viewing
// builds. Specified browser must map to one of the available
// browsers in the browser mapping section below. You can
// add custom browsers as you see fit!
//"browser": "chrome",

// Browser mapping
// Feel free to use the format below to add your own custom
// browsers! Just make sure you add them in the right section...
"posix": {
    "linux": {
        "firefox": "firefox -new-tab",
        "chrome": "google-chrome",
        "chrome64": "google-chrome",
        "chromium": "chromium"
    },
    "linux2": {
        "firefox": "firefox -new-tab",
        "chrome": "google-chrome",
        "chrome64": "google-chrome",
        "chromium": "chromium"
    },
    "darwin": {
        "firefox": "open -a \"/Applications/Firefox.app\"",
        "safari": "open -a \"/Applications/Safari.app\"",
        "chrome": "open -a \"/Applications/Google Chrome.app\"",
        "chrome64": "open -a \"/Applications/Google Chrome.app\"",
        "yandex": "open -a \"/Applications/Yandex.app\""
    }
},
"nt": {
    "win32": {
        "firefox": "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe -new-tab",
        "iexplore": "C:\\Program Files\\Internet Explorer\\iexplore.exe",
        "chrome": "%Local AppData%\\Google\\Chrome\\Application\\chrome.exe",
        "chrome64": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
        "yandex": "%Local AppData%\\Yandex\\YandexBrowser\\browser.exe"
    }
}

Issues

If you find a bug let us know here!

Contributions

Anyone is welcome to help improve this plugin.

There are various ways you can contribute:

  1. Open an issue on GitHub
  2. Send us a pull request with your own bug fixes and/or new features
  3. Provide feedback and suggestions on enhancements