Will collect process time for projects that are hosted in Azure DevOps
Project description
PR Checks:
Process Time - the time from a line change in the code to the deployment of the artefact created by this change to the production environment.
Full Documentation: https://github.com/data-driven-value-stream/.github/wiki/Process-Time
Tutorial
Here is an example https://worldpwn.visualstudio.com/process-time/_build?definitionId=4
Azure Devops repository Access
To access repository in Azure DevOps with pipline access token you need either run pipeline.yml file from the repository itself or reference needed repository in reosource.
resources:
repositories:
- repository: process-time
type: git
name: process-time
ref: main
steps:
- checkout: process-time
- checkout: self
- script: |
# do something
displayName: 'Can access both repositories'
env:
System.AccessToken: $(System.AccessToken)
Example Trunk Based Development
resources:
repositories:
- repository: process-time
type: git
name: process-time
ref: main
steps:
- checkout: process-time
- checkout: self
- script: |
# Set Variables
orgname="Azure DevOps Organization Name"
echo "orgname=$orgname"
token=$(System.AccessToken)
project="Azure DevOps Project Name"
echo "project=$project"
pipeline_id=1
echo "pipeline_id=$pipeline_id"
current_run_id=23
echo "current_run_id=$pipeline_id"
# Install Dependencies
python -m pip install --upgrade pip
pip install process-time-azure-devops==0.1.0
pip install azure-devops=7.1.0b4
# Run Process Time Package
python src/process_time_azure_devops/__main__.py --org "$orgname" --token "$token" --project "$project" --pipeline-id "$pipeline_id" --current-run-id $current_run_id
displayName: 'Can access both repositories'
env:
System.AccessToken: $(System.AccessToken)
# To publish result use run id in file name
- publish: $(System.DefaultWorkingDirectory)/process_time_result_23.json
artifact: process_time_result_23
Example Git-Flow
resources:
repositories:
- repository: process-time
type: git
name: process-time
ref: main
steps:
- checkout: process-time
- checkout: self
- script: |
# Set Variables
orgname="Azure DevOps Organization Name"
echo "orgname=$orgname"
token=$(System.AccessToken)
project="Azure DevOps Project Name"
echo "project=$project"
pipeline_id=1
echo "pipeline_id=$pipeline_id"
current_run_id=23
echo "current_run_id=$pipeline_id"
# Install Dependencies
python -m pip install --upgrade pip
pip install process-time-azure-devops==0.1.0
pip install azure-devops=7.1.0b4
# Run Process Time Package
# Add argument for development and production branch names without 'refs/heads/'
python src/process_time_azure_devops/__main__.py --org "$orgname" --token "$token" --project "$project" --pipeline-id "$pipeline_id" --current-run-id $current_run_id --production-branch-name "production" --development-branch-name "development"
displayName: 'Can access both repositories'
env:
System.AccessToken: $(System.AccessToken)
# To publish result use run id in file name
- publish: $(System.DefaultWorkingDirectory)/process_time_result_23.json
artifact: process_time_result_23
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
Close
Hashes for process_time_azure_devops-0.3.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a06c827b10b790552aa5b488de176a547a27495f2c3a97b22912761498f5680 |
|
MD5 | 4f56ff08946f2d731dea551182fda510 |
|
BLAKE2b-256 | 32ee99d5ca3a45632f92516d70deffbf634e9e098a06d140d0149a516713b25b |
Close
Hashes for process_time_azure_devops-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f8f81692277b3b145abb9c9749ab99af33b353b17ceae28d94b93e07449eb8 |
|
MD5 | cecf3eff300ac3469c00ccfbb0c46b7b |
|
BLAKE2b-256 | cd44d310aa7c42b9270ef6661607d4c3083f4e8e4588337c3735f08af716a1d3 |