Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinburke/jenkins
Open Jenkins urls from your command line
https://github.com/kevinburke/jenkins
Last synced: 29 days ago
JSON representation
Open Jenkins urls from your command line
- Host: GitHub
- URL: https://github.com/kevinburke/jenkins
- Owner: kevinburke
- Created: 2013-02-08T09:31:44.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-03T00:58:07.000Z (over 11 years ago)
- Last Synced: 2024-05-01T23:57:48.110Z (7 months ago)
- Language: Python
- Size: 121 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Open Jenkins urls
### Getting started
1. Clone this repo
git clone [email protected]:kevinburke/jenkins.git
2. Install it
cd jenkins
python setup.py develop3. Configure your Jenkins URL location
echo "[jenkins]" >> ~/.jenkinsrc
echo "host = http://jenkins.mydomain.com" >> ~/.jenkinsrc
echo "port = 7777" >> ~/.jenkinsrc4. View unit tests after you push code
cd /path/to/project
jenkinsWill open up the latest test run in your browser.
### Usage
$ jenkins -h
usage: jenkins [-h] [-b BRANCH] [-j] [remote_name]Open current build of a Jenkins job
positional arguments:
remote_name Name of the remote to openoptional arguments:
-h, --help show this help message and exit
-b BRANCH, --branch BRANCH
Git branch to open (defaults to current branch)
-j, --job Open the job homepage, not the current build