nsomar / xserverpy

Manage Xcode server bots from the command line, without the need to open or install Xcode.
BSD 3-Clause "New" or "Revised" License
16 stars 2 forks source link

Xserverpy

Build Status Coverage Status PyPI version

Xserverpy makes it possible to use Xcode bots from the command line.

Preview

Use cases

Installation

Using brew (recommended)

brew tap oarrabi/tap
brew install xserverpy

Using pip

pip install xserverpy

Usage

Authentication and Host information

All of xserverpy command accept authentication and Xcode server host/port as flags. For example, in order to list all the bots you would run:

xserverpy bots --host HOST --port PORT --user USER --pass PASS

To reduce duplication in calling consequent or future commands, you can run init subcommand to store these configuration on your machine.

xserverpy init --host HOST --port PORT --user USER --pass PASS    

Now that you stored them, you can call all of xcserverpy subcommands without passing these stored arguments:

xserverpy bots
xserverpy integrations list

xserverpy init flags:

 --host HOST          Xcode server host
 --port PORT          Xcode server host port, default 443
 --user USER          Username to use for authentication
 --password PASSWORD  Password to use for authentication
 --local              Store configuration file in the local directory

Note:

Bots

List all bots Demo

xserverpy bots # pass host/user info or load from stored

Integrations

List integrations per bot Demo

xserverpy integrations list --bot <Bot name or ID>

Integrate (build project) Demo

xserverpy integrations new --bot <Bot name or ID>

Integrate and wait Demo

xserverpy integrations new --bot <Bot name or ID> --wait

Show running integrations Demo

xserverpy integrations running

Cancel integrations (build project) Demo

xserverpy integrations cancel --id <Integration ID>

Note on integrate and wait

When using xserverpy integrations new --wait, xserverpy keeps polling Xcode server for updates on the running integrations. The default interval is .5s, you can control the behavior and the format of the progress using the following flags:

--interval INTERVAL  Interval to poll the server for updates, default .5s
--no-tty             Force non tty progress reporting

Future milestones and improvements

Author

Omar Abdelhafith nsomar, nsomar medium, @ifnottrue