CLI tool to trigger Azure DevOps pipelines
Project description
Azure DevOps Pipeline CLI
A command-line tool to trigger and manage Azure DevOps pipelines with ease.
Features
- Trigger Pipelines - Start builds with a single command
- Multi-Profile Support - Manage multiple Azure DevOps orgs (personal, work)
- Duplicate Detection - Prevents triggering duplicate builds
- Watch Progress - Real-time build status with progress bar
- Build Management - View status, logs, cancel, compare builds
- Favorites - Save and reuse common build configurations
- Shell Completion - Tab-complete pipeline aliases and branches
- Fuzzy Matching - Suggests corrections for typos
Installation
Homebrew (macOS/Linux)
brew tap SAGARSURI/tap
brew install adop-cli
pip
pip install adop-cli
From Source
git clone https://github.com/SAGARSURI/adop.git
cd adop
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
Setup
1. Configure Azure DevOps Connection
ado-pipeline config init
You'll be prompted to enter:
- Organization - Your Azure DevOps organization name
- Project - Your Azure DevOps project name
- PAT - Personal Access Token
Required PAT Permissions:
- Build: Read & execute
- Code: Read
2. Add Pipelines
After configuring, add pipelines you want to manage:
# Import pipelines from Azure DevOps (interactive)
ado-pipeline pipeline import
# Or add manually
ado-pipeline pipeline add my-build "My Pipeline Name" --description "Build description"
# Add with parameters
ado-pipeline pipeline add android-build "Android_Build" \
--param "outputFormat:choice:apk:apk,aab" \
--param "deploy:boolean:false" \
--param "releaseNotes:string:"
3. Enable Shell Completion (Optional)
# Bash - add to ~/.bashrc
eval "$(_ADO_PIPELINE_COMPLETE=bash_source ado-pipeline)"
# Zsh - add to ~/.zshrc
eval "$(_ADO_PIPELINE_COMPLETE=zsh_source ado-pipeline)"
Then restart your terminal or run source ~/.zshrc (or ~/.bashrc).
What it completes:
| Context | Example | Completes |
|---|---|---|
| Commands | ado-pipeline pl<Tab> |
plan, pipeline |
| Pipeline aliases | ado-pipeline apply <Tab> |
Your configured pipelines |
| Branch names | ado-pipeline apply my-build -b <Tab> |
Git branches |
| Subcommands | ado-pipeline pipeline <Tab> |
list, add, remove, etc. |
Quick Start
ado-pipeline list # List available pipelines
ado-pipeline plan android-dev-build # Dry-run (preview)
ado-pipeline apply android-dev-build # Trigger build
ado-pipeline apply android-dev-build -y -w # Trigger + watch
ado-pipeline status # Check build status
ado-pipeline open <BUILD_ID> # Open in browser
Commands
Trigger Pipelines
| Command | Description |
|---|---|
ado-pipeline plan <alias> |
Dry-run - preview what will be triggered |
ado-pipeline apply <alias> |
Trigger the pipeline |
Options
| Option | Behavior |
|---|---|
| (none) | Auto-detects current git branch |
--branch, -b |
Build from specified branch |
--pr |
Build from pull request (uses refs/pull/{n}/merge) |
--force, -f |
Bypass duplicate build check |
--branchand--prcannot be used together.
Examples
# Dry-run (preview only, no API call)
ado-pipeline plan android-dev-build
# Trigger build on current branch
ado-pipeline apply android-dev-build
# Trigger on specific branch
ado-pipeline apply android-dev-build --branch main
# Trigger from PR #123
ado-pipeline apply android-dev-build --pr 123
# With parameters
ado-pipeline apply android-dev-build -p deploy=true -p outputFormat=aab
# Skip confirmation + watch progress
ado-pipeline apply android-dev-build -y -w
Build Management
View Build Status
# Show recent builds
ado-pipeline status
# Show more builds
ado-pipeline status -n 20
# Filter by pipeline
ado-pipeline status -p my-build
# Show only your builds
ado-pipeline status --mine
View Build Logs
# Show logs for a build
ado-pipeline logs <BUILD_ID>
# Stream logs in real-time
ado-pipeline logs <BUILD_ID> -f
Cancel a Build
ado-pipeline cancel <BUILD_ID>
ado-pipeline cancel <BUILD_ID> -y # Skip confirmation
Open Build in Browser
ado-pipeline open <BUILD_ID>
Compare Two Builds
ado-pipeline diff <BUILD_ID_1> <BUILD_ID_2>
Shows side-by-side comparison of pipeline, branch, result, duration, and parameters.
Pipeline Management
List Configured Pipelines
ado-pipeline pipeline list
List Remote Pipelines
# List all pipelines from Azure DevOps
ado-pipeline list-remote
Shows all pipelines available in your Azure DevOps project with their IDs and folders.
Add a Pipeline
ado-pipeline pipeline add <alias> "<Azure DevOps Pipeline Name>"
# With parameters (format: name:type:default[:choices])
ado-pipeline pipeline add android-dev-build "Build_Android_Dev" \
--param "outputFormat:choice:apk:apk,aab" \
--param "deploy:boolean:false"
Parameter types: string, boolean, choice
Import from Azure DevOps
# Interactive import from remote
ado-pipeline pipeline import
This fetches available pipelines from Azure DevOps and lets you add them interactively.
View Pipeline Parameters
# Show available parameters for a pipeline
ado-pipeline pipeline params my-build
# Or use the Azure DevOps pipeline name
ado-pipeline pipeline params "My_Build_Pipeline"
Fetches the pipeline's YAML file and displays available parameters with their types, defaults, and allowed values.
Sync Parameters from Azure DevOps
# Fetch and save parameters locally
ado-pipeline pipeline sync my-build
This fetches parameters from Azure DevOps and saves them to your local config, so they appear in ado-pipeline list.
Remove a Pipeline
ado-pipeline pipeline remove <alias>
Favorites
Save frequently used build configurations for quick access.
Save a Favorite
# Save with deploy enabled
ado-pipeline fav add quick-build my-build --deploy
# Save with specific branch
ado-pipeline fav add release-build my-prod --branch main --deploy
List Favorites
ado-pipeline fav list
Run a Favorite
ado-pipeline fav run quick-build
ado-pipeline fav run quick-build -y -w # Skip confirmation + watch
Remove a Favorite
ado-pipeline fav remove quick-build
Configuration
# Initialize or update configuration
ado-pipeline config init
# Show current configuration
ado-pipeline config show
Multi-Profile Support
Manage multiple Azure DevOps organizations (e.g., personal and work accounts).
Create Profiles
# Create and configure profiles
ado-pipeline init work # Prompts for org/project/PAT
ado-pipeline init personal
Switch Profiles
# Switch active profile
ado-pipeline use work
# List profiles (active marked with *)
ado-pipeline profile
Use Profile for Single Command
# -P flag for one-off commands
ado-pipeline -P personal status
ado-pipeline -P work apply android-build
# Or use environment variable
ADO_PROFILE=personal ado-pipeline status
Parameters
Pass parameters with -p name=value:
ado-pipeline apply android-dev-build -p deploy=true -p outputFormat=aab
- Boolean values:
true/yes/1orfalse/no/0 - Discover parameters:
ado-pipeline pipeline params <alias>
Configuration Files
~/.azure-pipeline-cli/
├── active_profile # Current profile name
└── profiles/
└── <profile-name>/
├── config.json # PAT and organization settings
├── pipelines.json # Pipeline definitions
└── favorites.json # Saved favorite configurations
All files have 0600 permissions (owner read/write only) since they may contain sensitive data.
Environment Variables
| Variable | Description |
|---|---|
ADO_PROFILE |
Override active profile for the command |
ADO_BANNER |
Control ASCII banner display: 0 to disable, 1 to force enable |
NO_COLOR |
Standard variable to disable colors (also hides banner) |
Troubleshooting
"Pipeline not found"
The CLI suggests similar names if you make a typo:
Error: Pipeline 'my-bild' not found. Did you mean: my-build?
Run ado-pipeline pipeline list to see all available aliases.
"No pipelines configured"
Add pipelines first:
ado-pipeline pipeline import # Import from Azure DevOps
# or
ado-pipeline pipeline add <alias> "<pipeline-name>"
"PAT not configured"
Run ado-pipeline config init and enter your credentials.
"Branch not found"
The branch must exist on the remote. Push it first:
git push -u origin <branch>
"Duplicate build detected"
A build with the same branch, commit, and parameters is already running. Options:
- Wait for the existing build to complete
- Use
--forceto trigger anyway:ado-pipeline apply my-build --force - Cancel the existing build:
ado-pipeline cancel <BUILD_ID>
Shell completion not working
Make sure you've added the eval command to your shell config and restarted your terminal.
Build stuck or need to cancel
ado-pipeline cancel <BUILD_ID> -y
Development
Setup
git clone https://github.com/SAGARSURI/adop.git
cd adop
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
Running Tests
pytest tests/ -v
Project Structure
src/ado_pipeline/
├── __init__.py # Version
├── api.py # Azure DevOps API client
├── banner.py # ASCII art banner
├── cli.py # CLI commands (click)
├── config.py # Configuration management
├── duplicate.py # Duplicate build detection
├── favorites.py # Favorites system
├── pipelines.py # Pipeline definitions
├── plan.py # Execution plan generation
└── profiles.py # Multi-profile support
CI/CD
Automated Testing
Tests run automatically on:
- Push to
main - Pull requests to
main
Tests run against Python 3.10, 3.11, and 3.12.
Releasing
Releases are automated via GitHub Actions:
- Update version in
pyproject.toml - Commit and tag:
git add pyproject.toml git commit -m "chore: bump version to X.Y.Z" git tag vX.Y.Z git push origin main --tags
- The release workflow automatically:
- Runs tests
- Publishes to PyPI
- Updates Homebrew tap
Contributing
See CONTRIBUTING.md for guidelines.
License
MIT License - see LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file adop_cli-0.1.16.tar.gz.
File metadata
- Download URL: adop_cli-0.1.16.tar.gz
- Upload date:
- Size: 51.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39c1e96abd2c22f4444f39f38e99075d82a918316b89a9cff1f2efbb97c1b82a
|
|
| MD5 |
bb9a6bbf1e8c7f2310fa7fd112f0f76a
|
|
| BLAKE2b-256 |
39511829509b891e27872ae775fd899db7912e47bfcdfe88b1a4b17ff87d279b
|
Provenance
The following attestation bundles were made for adop_cli-0.1.16.tar.gz:
Publisher:
release.yml on SAGARSURI/adop
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
adop_cli-0.1.16.tar.gz -
Subject digest:
39c1e96abd2c22f4444f39f38e99075d82a918316b89a9cff1f2efbb97c1b82a - Sigstore transparency entry: 850907410
- Sigstore integration time:
-
Permalink:
SAGARSURI/adop@a1dc1beed7507015ee3b939c2de892d8e4f7a523 -
Branch / Tag:
refs/tags/v0.1.16 - Owner: https://github.com/SAGARSURI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a1dc1beed7507015ee3b939c2de892d8e4f7a523 -
Trigger Event:
push
-
Statement type:
File details
Details for the file adop_cli-0.1.16-py3-none-any.whl.
File metadata
- Download URL: adop_cli-0.1.16-py3-none-any.whl
- Upload date:
- Size: 45.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d2591340ac140b241ce14ac601ce28bf025141b391bc4ae14bfde005a43aa53
|
|
| MD5 |
6d6d8e1ce454e7e30e52209c1516b8c8
|
|
| BLAKE2b-256 |
a7d3e48d0d379b15a762262c941d145936a96941ae0c52c6f6c76652b68e3871
|
Provenance
The following attestation bundles were made for adop_cli-0.1.16-py3-none-any.whl:
Publisher:
release.yml on SAGARSURI/adop
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
adop_cli-0.1.16-py3-none-any.whl -
Subject digest:
4d2591340ac140b241ce14ac601ce28bf025141b391bc4ae14bfde005a43aa53 - Sigstore transparency entry: 850907448
- Sigstore integration time:
-
Permalink:
SAGARSURI/adop@a1dc1beed7507015ee3b939c2de892d8e4f7a523 -
Branch / Tag:
refs/tags/v0.1.16 - Owner: https://github.com/SAGARSURI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a1dc1beed7507015ee3b939c2de892d8e4f7a523 -
Trigger Event:
push
-
Statement type: