Downloads:
12,384
Downloads of v 0.0.33:
468
Last Update:
21 Mar 2015
Package Maintainer(s):
Software Author(s):
- Chris Dostert
Tags:
powershell poshdevops taskrunner ci continuousintegration build deployment admin- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
PoshDevOps
This is not the latest version of PoshDevOps available.
- 1
- 2
- 3
0.0.33 | Updated: 21 Mar 2015
- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
12,384
Downloads of v 0.0.33:
468
Maintainer(s):
Software Author(s):
- Chris Dostert
PoshDevOps 0.0.33
This is not the latest version of PoshDevOps available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Chris Dostert. The inclusion of Chris Dostert trademark(s), if any, upon this webpage is solely to identify Chris Dostert goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Unknown
Verification Testing Unknown
Scan Testing Successful:
No detections found in any package files
Deployment Method: Individual Install, Upgrade, & Uninstall
To install PoshDevOps, run the following command from the command line or from PowerShell:
To upgrade PoshDevOps, run the following command from the command line or from PowerShell:
To uninstall PoshDevOps, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download poshdevops --internalize --version=0.0.33 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade poshdevops -y --source="'INTERNAL REPO URL'" --version="'0.0.33'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade poshdevops -y --source="'INTERNAL REPO URL'" --version="'0.0.33'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install poshdevops
win_chocolatey:
name: poshdevops
version: '0.0.33'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'poshdevops' do
action :install
source 'INTERNAL REPO URL'
version '0.0.33'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller poshdevops
{
Name = "poshdevops"
Version = "0.0.33"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'poshdevops':
ensure => '0.0.33',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 24 Apr 2015.
PowerShell driven distributed DevOps
Installation notes:
- installs to: C:\ProgramFiles\PoshDevOps
- appends C:\ProgramFiles\PoshDevOps\Modules to PSModulePath environment variable
try {
. "$PSScriptRoot\PoshDevOps\Uninstall.ps1"
} catch {
Write-ChocolateyFailure 'PoshDevOps' $_.Exception.Message
throw
}
# installer based on guidelines provided by Microsoft
# for installing shared/3rd party powershell modules
# (see: https://msdn.microsoft.com/en-us/library/dd878350%28v=vs.85%29.aspx )
if($PSVersionTable.PSVersion.Major -lt 3) {
Write-Warning "PoshDevOps requires PowerShell 3.0 or better; you have version $($Host.Version)."
return
}
# prepare install dir
$installRootDirPath = "$env:ProgramFiles\PoshDevOps"
$installDirPath = "$installRootDirPath\Modules"
# handle upgrade scenario
if(Test-Path "$installRootDirPath"){
Write-Debug 'removing previous PoshDevOps installation'
. "$PSScriptRoot\Uninstall.ps1"
}
New-Item $installDirPath -ItemType Directory | Out-Null
Copy-Item -Path "$PSScriptRoot" -Destination $installDirPath -Recurse
$psModulePath = [Environment]::GetEnvironmentVariable('PSModulePath','Machine')
# if installation dir path is not already in path then add it.
if(!($psModulePath.Split(';').Contains($installDirPath))){
Write-Debug "adding $installDirPath to '$env:PSModulePath'"
# trim trailing semicolon if exists
$psModulePath = $psModulePath.TrimEnd(';');
# append path to PoshDevOps installation
$psModulePath = $psModulePath + ";$installDirPath"
# save
[Environment]::SetEnvironmentVariable('PSModulePath',$psModulePath,'Machine')
# make effective in current session
$env:PSModulePath = $env:PSModulePath + ";$installDirPath"
}
Write-Debug "Dot Sourcing $PSScriptRoot\PsonConverters.ps1"
. "$PSScriptRoot\PsonConverters.ps1"
Write-Debug "Dot Sourcing $PSScriptRoot\SemanticVersioning.ps1"
. "$PSScriptRoot\SemanticVersioning.ps1"
$defaultPackageSources = @('https://www.myget.org/F/poshdevops')
function EnsureNuGetInstalled(){
try{
Get-Command nuget -ErrorAction Stop | Out-Null
}
catch{
Write-Debug "installing nuget.commandline"
chocolatey install nuget.commandline | Out-Null
}
}
function Get-PoshDevOpsTaskGroup(
[string]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath = '.'){
<#
.SYNOPSIS
parses a task group file
#>
$taskGroupFilePath = Resolve-Path "$ProjectRootDirPath\.PoshDevOps\TaskGroup.psd1"
Write-Output (Get-Content $taskGroupFilePath | Out-String | ConvertFrom-Pson)
}
function Save-TaskGroup(
[PsCustomObject]
$TaskGroup,
[string]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath = '.'){
<#
.SYNOPSIS
an internal utility function to snapshot and save a TaskGroup to disk
#>
$taskGroupFilePath = Resolve-Path "$ProjectRootDirPath\.PoshDevOps\TaskGroup.psd1"
Set-Content $taskGroupFilePath -Value (ConvertTo-Pson -InputObject $TaskGroup -Depth 12 -Layers 12 -Strict)
}
function Get-UnionOfHashtables(
[Hashtable]
[ValidateNotNull()]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$Source1,
[Hashtable]
[ValidateNotNull()]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$Source2){
$destination = $Source1.Clone()
Write-Debug "After adding `$Source1, destination is $($destination|Out-String)"
$Source2.GetEnumerator() | ?{!$destination.ContainsKey($_.Key)} |%{$destination[$_.Key] = $_.Value}
Write-Debug "After adding `$Source2, destination is $($destination|Out-String)"
Write-Output $destination
}
function Get-IndexOfKeyInOrderedDictionary(
[string]
[ValidateNotNullOrEmpty()]
$Key,
[System.Collections.Specialized.OrderedDictionary]
[ValidateNotNullOrEmpty()]
$OrderedDictionary){
<#
.SYNOPSIS
an internal utility function to find the index of a key in an ordered dictionary
#>
$indexOfKey = -1
$keysArray = [string[]]$OrderedDictionary.Keys
for ($i = 0; $i -lt $OrderedDictionary.Count; $i++){
if($keysArray[$i] -eq $Key){
$indexOfKey = $i
break
}
}
Write-Output $indexOfKey
}
function Get-LatestPackageVersion(
[string[]]
[Parameter(
Mandatory=$true)]
$Source = $defaultPackageSources,
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
Mandatory=$true)]
$Id){
$versions = @()
foreach($packageSource in $Source){
$uri = "$packageSource/api/v2/package-versions/$Id"
Write-Debug "Attempting to fetch package versions:` uri: $uri "
$versions = $versions + (Invoke-RestMethod -Uri $uri)
Write-Debug "response from $uri was: ` $versions"
}
if(!$versions -or ($versions.Count -lt 1)){
throw "no versions of $Id could be located.` searched: $Source"
}
Write-Output ([Array](Get-SortedSemanticVersions -InputArray $versions -Descending))[0]
}
function Add-PoshDevOpsTask(
[CmdletBinding(
DefaultParameterSetName="add-TaskLast")]
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
Mandatory=$true)]
$Name,
[string]
[Parameter(
Mandatory=$true)]
$PackageId,
[string]
$PackageVersion,
[switch]
[Parameter(
Mandatory=$true,
ParameterSetName='add-TaskFirst')]
$First,
[switch]
[Parameter(
ParameterSetName='add-TaskLast')]
$Last,
[string]
[Parameter(
Mandatory=$true,
ParameterSetName='add-TaskAfter')]
$After,
[string]
[Parameter(
Mandatory=$true,
ParameterSetName='add-TaskBefore')]
$Before,
[string[]]
[ValidateNotNullOrEmpty()]
$PackageSource=$defaultPackageSources,
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath = '.'){
<#
.SYNOPSIS
Adds a new task to a task group
.EXAMPLE
Add-PoshDevOpsTask -Name "LastTask" -PackageId "DeployNupkgToAzureWebsites" -PackageVersion "0.0.3"
Description:
This command adds a task (named LastTask) after all existing tasks
.EXAMPLE
Add-PoshDevOpsTask -Name "FirstTask" -PackageId "DeployNupkgToAzureWebsites" -First
Description:
This command adds a task (named FirstTask) before all existing tasks
.EXAMPLE
Add-PoshDevOpsTask -Name "AfterSecondTask" -PackageId "DeployNupkgToAzureWebsites" -After "SecondTask"
Description:
This command adds a task (named AfterSecondTask) after the existing task named SecondTask
.EXAMPLE
Add-PoshDevOpsTask -Name "BeforeSecondTask" -PackageId "DeployNupkgToAzureWebsites" -Before "SecondTask"
Description:
This command adds a task (named BeforeSecondTask) before the existing task named SecondTask
#>
$taskGroup = Get-PoshDevOpsTaskGroup -ProjectRootDirPath $ProjectRootDirPath
if($taskGroup.Tasks.Contains($Name)){
throw "A task with name $Name already exists.`n Tip: You can remove the existing task by invoking Remove-PoshDevOpsTask"
}
else{
if([string]::IsNullOrWhiteSpace($PackageVersion)){
$PackageVersion = Get-LatestPackageVersion -Source $PackageSource -Id $PackageId
Write-Debug "using greatest available pacakge version : $PackageVersion"
}
$key = $Name
$value = [PSCustomObject]@{'Name'=$Name;'PackageId'=$PackageId;'PackageVersion'=$PackageVersion}
if($First.IsPresent){
$taskGroup.Tasks.Insert(0,$key,$value)
}
elseif('add-TaskAfter' -eq $PSCmdlet.ParameterSetName){
$indexOfAfter = Get-IndexOfKeyInOrderedDictionary -Key $After -OrderedDictionary $taskGroup.Tasks
# ensure task with key $After exists
if($indexOfAfter -lt 0){
throw "A task with name $After could not be found."
}
$taskGroup.Tasks.Insert($indexOfAfter + 1,$key,$value)
}
elseif('add-TaskBefore' -eq $PSCmdlet.ParameterSetName){
$indexOfBefore = Get-IndexOfKeyInOrderedDictionary -Key $Before -OrderedDictionary $taskGroup.Tasks
# ensure task with key $Before exists
if($indexOfBefore -lt 0){
throw "A task with name $Before could not be found."
}
$taskGroup.Tasks.Insert($indexOfBefore,$key,$value)
}
else{
# by default add as last task
$taskGroup.Tasks.Add($key, $value)
}
Save-TaskGroup -TaskGroup $taskGroup -ProjectRootDirPath $ProjectRootDirPath
}
}
function Set-PoshDevOpsTaskParameters(
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
Mandatory=$true)]
$PoshDevOpsTaskName,
[hashtable]
[Parameter(
Mandatory=$true)]
$Parameters,
[switch]$Force,
[string]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath = '.'){
<#
.SYNOPSIS
Sets configurable parameters of a task
.EXAMPLE
Set-PoshDevOpsTaskParameters -PoshDevOpsTaskName "GitClone" -Parameters @{GitParameters=@("status")} -Force
Description:
This command sets a parameter (named "GitParameters") for a task (named "GitClone") to @("status")
#>
$taskGroup = Get-PoshDevOpsTaskGroup -ProjectRootDirPath $ProjectRootDirPath
$ciTask = $taskGroup.Tasks.$PoshDevOpsTaskName
$parametersPropertyName = "Parameters"
Write-Debug "Checking task `"$PoshDevOpsTaskName`" for property `"$parametersPropertyName`""
$parametersPropertyValue = $ciTask.$parametersPropertyName
if($parametersPropertyValue){
foreach($parameter in $Parameters.GetEnumerator()){
$parameterName = $parameter.Key
$parameterValue = $parameter.Value
Write-Debug "Checking if parameter `"$parameterName`" previously set"
$previousParameterValue = $parametersPropertyValue.$parameterName
if($previousParameterValue){
Write-Debug "Found parameter `"$parameterName`" previously set to `"$($previousParameterValue|Out-String)`""
$confirmationPromptQuery =
@"
For task `"$PoshDevOpsTaskName`",
are you sure you want to change the value of parameter `"$parameterName`"?
old value: $($previousParameterValue|Out-String)
new value: $($parameterValue|Out-String)
"@
$confirmationPromptCaption = "Confirm parameter value change"
if($Force.IsPresent -or !$PSCmdlet.ShouldContinue($confirmationPromptQuery,$confirmationPromptCaption)){
Write-Debug "Skipping parameter `"$parameterName`". Overwriting existing parameter value was not confirmed."
continue
}
}
Write-Debug "Setting parameter `"$parameterName`" = `"$($parameterValue|Out-String)`" "
$parametersPropertyValue.$parameterName = $parameterValue
}
}
else {
Write-Debug `
@"
Property `"$parametersPropertyName`" has not previously been set for task `"$PoshDevOpsTaskName`"
Adding with value:
$($Parameters|Out-String)
"@
Add-Member -InputObject $ciTask -MemberType 'NoteProperty' -Name $parametersPropertyName -Value $Parameters -Force
}
Save-TaskGroup -TaskGroup $taskGroup -ProjectRootDirPath $ProjectRootDirPath
}
function Remove-PoshDevOpsTask(
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
Mandatory=$true)]
$Name,
[switch]$Force,
[string]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath = '.'){
$confirmationPromptQuery = "Are you sure you want to delete the task with name $Name`?"
$confirmationPromptCaption = 'Confirm task removal'
if($Force.IsPresent -or $PSCmdlet.ShouldContinue($confirmationPromptQuery,$confirmationPromptCaption)){
$taskGroup = Get-PoshDevOpsTaskGroup -ProjectRootDirPath $ProjectRootDirPath
Write-Debug "Removing task $Name"
$taskGroup.Tasks.Remove($Name)
Save-TaskGroup -TaskGroup $taskGroup -ProjectRootDirPath $ProjectRootDirPath
}
}
function New-PoshDevOpsTaskGroup(
[string]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath = '.'){
$taskGroupDirPath = "$(Resolve-Path $ProjectRootDirPath)\.PoshDevOps"
if(!(Test-Path $taskGroupDirPath)){
$templatesDirPath = "$PSScriptRoot\Templates"
Write-Debug "Creating a directory for the task group at path $taskGroupDirPath"
New-Item -ItemType Directory -Path $taskGroupDirPath
Write-Debug "Adding default files to path $taskGroupDirPath"
Copy-Item -Path "$templatesDirPath\TaskGroup.psd1" $taskGroupDirPath
}
else{
throw ".PoshDevOps directory already exists at $taskGroupDirPath. If you are trying to recreate your task group from scratch you must invoke Remove-PoshDevOpsTaskGroup first"
}
}
function Remove-PoshDevOpsTaskGroup(
[switch]
$Force,
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath = '.'){
$taskGroupDirPath = Resolve-Path "$ProjectRootDirPath\.PoshDevOps"
$confirmationPromptQuery = "Are you sure you want to delete the task group located at $TaskGroupDirPath`?"
$confirmationPromptCaption = 'Confirm task group removal'
if($Force.IsPresent -or $PSCmdlet.ShouldContinue($confirmationPromptQuery,$confirmationPromptCaption)){
Remove-Item -Path $taskGroupDirPath -Recurse -Force
}
}
function Install-PoshDevOpsPackage(
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
Mandatory=$true,
ValueFromPipelineByPropertyName=$true)]
$Id,
[string]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$Version,
[string[]]
[ValidateCount( 1, [Int]::MaxValue)]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$Source = $defaultPackageSources,
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath='.'){
$taskGroupDirPath = Resolve-Path "$ProjectRootDirPath\.PoshDevOps"
$packagesDirPath = "$taskGroupDirPath\Packages"
if([string]::IsNullOrWhiteSpace($Version)){
$Version = Get-LatestPackageVersion -Source $Source -Id $Id
Write-Debug "using greatest available package version : $Version"
}
$initialOFS = $OFS
try{
$OFS = ';'
$nugetExecutable = 'nuget'
$nugetParameters = @('install','-Source',($Source|Out-String),'-Id',$Id,'-RepositoryPath',$packagesDirPath,'-NonInteractive')
Write-Debug `
@"
Invoking nuget:
& $nugetExecutable $($nugetParameters|Out-String)
"@
& $nugetExecutable $nugetParameters
# handle errors
if ($LastExitCode -ne 0) {
throw $Error
}
}
Finally{
$OFS = $initialOFS
}
}
function Uninstall-PoshDevOpsPackageIfExists(
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
Mandatory=$true,
ValueFromPipelineByPropertyName=$true)]
$Id,
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
Mandatory=$true,
ValueFromPipelineByPropertyName=$true)]
$Version,
[string]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath='.'){
$taskGroupDirPath = Resolve-Path "$ProjectRootDirPath\.PoshDevOps"
$packagesDirPath = "$taskGroupDirPath\Packages"
$packageInstallationDir = "$packagesDirPath\$($Id).$($Version)"
If(Test-Path $packageInstallationDir){
Write-Debug `
@"
Removing package at:
$packageInstallationDir
"@
Remove-Item $packageInstallationDir -Recurse -Force -UseTransaction
}
Else{
Write-Debug `
@"
No package to remove at:
$packageInstallationDir
"@
}
}
function Update-PoshDevOpsPackage(
[CmdletBinding(
DefaultParameterSetName="Update-All")]
[string[]]
[ValidateCount( 1, [Int]::MaxValue)]
[Parameter(
Mandatory=$true,
ValueFromPipelineByPropertyName=$true,
ParameterSetName="Update-Single")]
[Parameter(
Mandatory=$true,
ValueFromPipelineByPropertyName=$true,
ParameterSetName="Update-Multiple")]
$Id,
[string]
[Parameter(
Mandatory=$true,
ValueFromPipelineByPropertyName=$true,
ParameterSetName="Update-Single")]
$Version,
[switch]
[Parameter(
ParameterSetName="Update-All")]
$All,
[string[]]
[ValidateCount( 1, [Int]::MaxValue)]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$Source = $defaultPackageSources,
[String]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath='.'){
$taskGroupDirPath = Resolve-Path "$ProjectRootDirPath\.PoshDevOps"
$taskGroupFilePath = "$taskGroupDirPath\TaskGroup.psd1"
$packagesDirPath = "$taskGroupDirPath\Packages"
$taskGroup = Get-PoshDevOpsTaskGroup -ProjectRootDirPath $ProjectRootDirPath
# build up list of package updates
$packageUpdates = @{}
If('Update-Multiple' -eq $PSCmdlet.ParameterSetName){
foreach($packageId in $Id){
$packageUpdates.Add($packageId,(Get-LatestPackageVersion -Source $Source -Id $packageId))
}
}
ElseIf('Update-Single' -eq $PSCmdlet.ParameterSetName){
if($Id.Length -ne 1){
throw "Updating to an explicit package version is only allowed when updating a single package"
}
$packageUpdates.Add($Id,$Version)
}
Else{
foreach($task in $taskGroup.Tasks.Values){
$packageUpdates.Add($task.PackageId,(Get-LatestPackageVersion -Source $Source -Id $task.PackageId))
}
}
foreach($task in $taskGroup.Tasks.Values){
$updatedPackageVersion = $packageUpdates.($task.PackageId)
if($null -ne $updatedPackageVersion){
Uninstall-PoshDevOpsPackageIfExists -Id $task.PackageId -Version $task.PackageVersion -ProjectRootDirPath $ProjectRootDirPath
Write-Debug `
@"
Updating task (with name $($task.Name)) package (with id $($task.PackageId))
from version: $($task.PackageVersion)
to version: $($updatedPackageVersion)
"@
$task.PackageVersion = $updatedPackageVersion
}
}
Save-TaskGroup -TaskGroup $taskGroup -ProjectRootDirPath $ProjectRootDirPath
}
function Invoke-PoshDevOpsTaskGroup(
[Hashtable]
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$Parameters,
[string[]]
[ValidateCount( 1, [Int]::MaxValue)]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$PackageSource = $defaultPackageSources,
[String]
[ValidateNotNullOrEmpty()]
[Parameter(
ValueFromPipelineByPropertyName=$true)]
$ProjectRootDirPath='.'){
$taskGroupDirPath = Resolve-Path "$ProjectRootDirPath\.PoshDevOps"
$taskGroupFilePath = "$taskGroupDirPath\TaskGroup.psd1"
$packagesDirPath = "$taskGroupDirPath\Packages"
if(Test-Path $taskGroupFilePath){
EnsureNuGetInstalled
$TaskGroup = Get-PoshDevOpsTaskGroup -ProjectRootDirPath $ProjectRootDirPath
foreach($task in $TaskGroup.Tasks.Values){
if($Parameters.($task.Name)){
if($task.Parameters){
Write-Debug "Adding union of passed parameters and archived parameters to pipeline. Passed parameters will override archived parameters"
$taskParameters = Get-UnionOfHashtables -Source1 $Parameters.($task.Name) -Source2 $task.Parameters
}
else{
Write-Debug "Adding passed parameters to pipeline"
$taskParameters = $Parameters.($task.Name)
}
}
elseif($task.Parameters){
Write-Debug "Adding archived parameters to pipeline"
$taskParameters = $task.Parameters
}
else{
$taskParameters = @{}
}
Write-Debug "Adding automatic parameters to pipeline"
$taskParameters.PoshDevOpsProjectRootDirPath = (Resolve-Path $ProjectRootDirPath)
$taskParameters.PoshDevOpsTaskName = $task.Name
Write-Debug "Ensuring task module package installed"
Install-PoshDevOpsPackage -Id $task.PackageId -Version $task.PackageVersion -Source $PackageSource
$moduleDirPath = "$packagesDirPath\$($task.PackageId).$($task.PackageVersion)\tools\$($task.PackageId)"
Write-Debug "Importing module located at: $moduleDirPath"
Import-Module $moduleDirPath -Force
Write-Debug `
@"
Invoking task $($task.Name) with parameters:
$($taskParameters|Out-String)
"@
# Parameters must be PSCustomObject so [Parameter(ValueFromPipelineByPropertyName = $true)] works
[PSCustomObject]$taskParameters.Clone() | Invoke-PoshDevOpsTask
}
}
else{
throw "TaskGroup.psd1 not found at: $taskGroupFilePath"
}
}
Export-ModuleMember `
-Function `
@(
'Invoke-PoshDevOpsTaskGroup',
'New-PoshDevOpsTaskGroup',
'Remove-PoshDevOpsTaskGroup',
'Update-PoshDevOpsPackage',
'Add-PoshDevOpsTask',
'Set-PoshDevOpsTaskParameters',
'Remove-PoshDevOpsTask',
'Get-PoshDevOpsTaskGroup')
Set-Alias ConvertFrom-Pson Invoke-Expression -Description "Convert variable from PSON"
Function ConvertTo-Pson(
[Parameter(
ValueFromPipeline=$true)]
$InputObject,
[Int]
$Depth = 9,
[Int]
$Layers = 1,
[Switch]
$Strict) {
<#
.LINK http://stackoverflow.com/questions/15139552/save-hash-table-in-powershell-object-notation-pson
#>
$Format = $Null
$Quote = If ($Depth -le 0) {""} Else {""""}
$Space = If ($Layers -le 0) {""} Else {" "}
If ($InputObject -eq $Null) {"`$Null"} Else {
$Type = "[" + $InputObject.GetType().Name + "]"
$PSON = If ($InputObject -is [Array]) {
$Format = "@(", ",$Space", ")"
If ($Depth -gt 1) {
For ($i = 0; $i -lt $InputObject.Count; $i++) {
ConvertTo-PSON $InputObject[$i] ($Depth - 1) ($Layers - 1) -Strict:$Strict
}
}
} ElseIf ($InputObject -is [Xml]) {
$Type = "[Xml]"
$String = New-Object System.IO.StringWriter
$InputObject.Save($String)
$Xml = "'" + ([String]$String).Replace("`'", "'") + "'"
If ($Layers -le 0) {
($Xml -Replace "\r\n\s*", "") -Replace "\s+", " "
} ElseIf ($Layers -eq 1) {
$Xml
} Else {
$Xml.Replace("`r`n", "`r`n`t")
}
$String.Dispose()
} ElseIf ($InputObject -is [DateTime]) {
"$Quote$($InputObject.ToString('s'))$Quote"
} ElseIf ($InputObject -is [String]) {
0..11 | ForEach {$InputObject = $InputObject.Replace([String]"```'""`0`a`b`f`n`r`t`v`$"[$_], ('`' + '`''"0abfnrtv$'[$_]))}; "$Quote$InputObject$Quote"
} ElseIf ($InputObject -is [Boolean]) {
"`$$InputObject"
} ElseIf ($InputObject -is [Char]) {
If ($Strict) {[Int]$InputObject} Else {"$Quote$InputObject$Quote"}
} ElseIf ($InputObject -is [ValueType]) {
$InputObject
} ElseIf ($InputObject -as [Hashtable]){
if($InputObject -is [System.Collections.Specialized.OrderedDictionary]){
$Type = "[Ordered]"
}
$Format = "@{", ";$Space", "}"
If ($Depth -gt 1){
$InputObject.GetEnumerator() | ForEach {$_.Name + "$Space=$Space" + (ConvertTo-PSON $_.Value ($Depth - 1) ($Layers - 1) -Strict:$Strict)}
}
} ElseIf ($InputObject -is [Object]) {
$Format = "@{", ";$Space", "}"
If ($Depth -gt 1) {
$InputObject.PSObject.Properties | ForEach {$_.Name + "$Space=$Space" + (ConvertTo-PSON $_.Value ($Depth - 1) ($Layers - 1) -Strict:$Strict)}
}
} Else {
$InputObject
}
If ($Format) {
$PSON = $Format[0] + (&{
If (($Layers -le 1) -or ($PSON.Count -le 0)) {
$PSON -Join $Format[1]
} Else {
("`r`n" + ($PSON -Join "$($Format[1])`r`n")).Replace("`r`n", "`r`n`t") + "`r`n"
}
}) + $Format[2]
}
If ($Strict) {
"$Type$PSON"
} Else {
"$PSON"
}
}
}
function ConvertTo-SemanticVersionObject(
[string]
$SemanticVersionString){
<#
.SYNOPSIS
creates an object representing a v1.0 & v2.0 semantic version (see: http://semver.org/)
#>
$semanticVersionRegex = "(?<Major>\d+)\.(?<Minor>\d+)\.(?<Patch>\d+)(?:-(?<PreRelease>[0-9A-Za-z-.]*))?(?:\+(?<Build>[0-9A-Za-z-.]*))?"
$semanticVersionString -match $semanticVersionRegex |Out-Null
$Matches.Remove(0)
$Matches.Major = [int]$Matches.Major
$Matches.Minor = [int]$Matches.Minor
$Matches.Patch = [int]$Matches.Patch
If($Matches.PreRelease){
$preReleaseIdentifiers = $Matches.PreRelease.Split('.')|%{if($_ -as [long]){[long]$_}else{[string]$_}}
$Matches.PreRelease = @{Identifiers=[object[]]$preReleaseIdentifiers}
}
$Matches.Clone() | Write-Output
}
function Compare-SemanticVersions(
<#
.SYNOPSIS
compares v1.0 & v2.0 semantic versions (see: http://semver.org/)
#>
[string]
$XSemVerString,
[string]
$YSemVerString){
$XSemVer = ConvertTo-SemanticVersionObject -SemanticVersionString $XSemVerString
$YSemVer = ConvertTo-SemanticVersionObject -SemanticVersionString $YSemVerString
If($XSemVer.Major -ne $YSemVer.Major){
return $XSemVer.Major - $YSemVer.Major
}
ElseIf($XSemVer.Minor -ne $YSemVer.Minor){
return $XSemVer.Minor - $YSemVer.Minor
}
ElseIf($XSemVer.Patch -ne $YSemVer.Patch){
return $XSemVer.Patch - $YSemVer.Patch
}
# per spec: "When major, minor, and patch are equal, a pre-release version has lower precedence than a normal version"
If(!$XSemVer.PreRelease -and $YSemVer.PreRelease){
return 1
}
ElseIf(!$XSemVer.PreRelease -and !$YSemVer.PreRelease){
return 0
}
ElseIf($XSemVer.PreRelease -and !$YSemVer.PreRelease){
return -1
}
For($i = 0;$i -lt [Math]::Min($XSemVer.PreRelease.Identifiers.Count,$YSemVer.PreRelease.Identifiers.Count);$i++){
$XIdentifier = $XSemVer.PreRelease.Identifiers[$i]
$YIdentifier = $YSemVer.PreRelease.Identifiers[$i]
#if x and y numeric
If(($XIdentifier -is [long]) -and ($YIdentifier -is [long])){
#per spec: "identifiers consisting of only digits are compared numerically"
$xIdentifierMinusYIdentifier = $XIdentifier - $YIdentifier
If($xIdentifierMinusYIdentifier -ne 0){
return $xIdentifierMinusYIdentifier
}
}
#if x or[exclusive] y is numeric
ElseIf(($XIdentifier -is [long]) -xor ($YIdentifier -is [long])){
#per spec: "Numeric identifiers always have lower precedence than non-numeric identifiers"
If($XIdentifier -isnot [long]){
return 1
}
Else{
return -1
}
}
#if x and y both textual
Else{
#per spec: "identifiers with letters or hyphens are compared lexically in ASCII sort order"
If($XIdentifier -gt $YIdentifier){
return 1
}
ElseIf($XIdentifier -lt $YIdentifier){
return -1
}
}
}
#per spec: "A larger set of pre-release fields has a higher precedence than a smaller set, if all of the preceding identifiers are equal"
return $XSemVer.PreRelease.Identifiers.Count - $YSemVer.PreRelease.Identifiers.Count
}
function Get-SortedSemanticVersions(
[string[]]
$InputArray,
[switch]
$Descending){
<#
.SYNOPSIS
sorts v1.0 & v2.0 semantic versions (see: http://semver.org/)
#>
$counter = 0
$compareResultFactor = 1
if($Descending.IsPresent){
$compareResultFactor = -1
}
# $unsorted is the first index of the unsorted region
for ($unsorted = 1; $unsorted -lt $InputArray.Count; $unsorted++)
{
# Next item in the unsorted region
$nextItem = $InputArray[$unsorted]
# Index of insertion in the sorted region
$location = $unsorted
while (($location -gt 0) -and `
(($compareResultFactor *(Compare-SemanticVersions -X $InputArray[$location - 1] -Y $nextItem)) -gt 0))
{
$counter++
# Shift to the right
$InputArray[$location] = $InputArray[$location - 1]
$location--
}
# Insert $nextItem into the sorted region
$InputArray[$location] = $nextItem
}
Write-Output $InputArray
}
# remove source
$installRootDirPath = "C:\Program Files\PoshDevOps"
$installDirPath = "$installRootDirPath\Modules"
# make idempotent
if(Test-Path "$installRootDirPath"){
Remove-Item $installRootDirPath -Force -Recurse
}
# remove $PSModulePath modification
$psModulePath = [Environment]::GetEnvironmentVariable('PSModulePath','Machine')
$newPSModulePathParts = @();
$isPSModulePathModified = $false
foreach($part in $psModulePath.Split(';')){
if($part -eq $installDirPath){
$isPSModulePathModified = $true
}
else{
$newPSModulePathParts += $part;
}
}
$psModulePath = $newPSModulePathParts -join ';'
if($isPSModulePathModified){
Write-Debug "updating '$env:PSModulePath' to $psModulePath"
# save
[Environment]::SetEnvironmentVariable('PSModulePath',$psModulePath,'Machine')
}
Log in or click on link to see number of positives.
- poshdevops.0.0.33.nupkg (2e95b5e58076) - ## / 57
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
PoshDevOps 0.0.72 | 1120 | Sunday, March 29, 2015 | Approved | |
PoshDevOps 0.0.71 | 417 | Friday, March 27, 2015 | Approved | |
PoshDevOps 0.0.69 | 405 | Friday, March 27, 2015 | Approved | |
PoshDevOps 0.0.68 | 434 | Thursday, March 26, 2015 | Approved | |
PoshDevOps 0.0.64 | 453 | Thursday, March 26, 2015 | Approved | |
PoshDevOps 0.0.63 | 427 | Wednesday, March 25, 2015 | Approved | |
PoshDevOps 0.0.62 | 393 | Wednesday, March 25, 2015 | Approved | |
PoshDevOps 0.0.42 | 460 | Wednesday, March 25, 2015 | Approved | |
PoshDevOps 0.0.41 | 410 | Tuesday, March 24, 2015 | Approved | |
PoshDevOps 0.0.40 | 397 | Tuesday, March 24, 2015 | Approved | |
PoshDevOps 0.0.39 | 419 | Tuesday, March 24, 2015 | Approved | |
PoshDevOps 0.0.38 | 413 | Monday, March 23, 2015 | Approved | |
PoshDevOps 0.0.37 | 446 | Monday, March 23, 2015 | Approved | |
PoshDevOps 0.0.36 | 432 | Sunday, March 22, 2015 | Approved | |
PoshDevOps 0.0.35 | 437 | Sunday, March 22, 2015 | Approved | |
PoshDevOps 0.0.34 | 405 | Saturday, March 21, 2015 | Approved | |
PoshDevOps 0.0.33 | 468 | Saturday, March 21, 2015 | Approved | |
PoshDevOps 0.0.32 | 384 | Saturday, March 21, 2015 | Approved | |
PoshDevOps 0.0.31 | 415 | Saturday, March 21, 2015 | Approved | |
PoshDevOps 0.0.30 | 413 | Saturday, March 21, 2015 | Approved | |
PoshDevOps 0.0.28 | 434 | Saturday, March 21, 2015 | Approved | |
PoshDevOps 0.0.27 | 474 | Saturday, March 21, 2015 | Approved | |
PoshDevOps 0.0.13 | 521 | Friday, March 20, 2015 | Approved | |
PoshDevOps 0.0.12 | 405 | Friday, March 20, 2015 | Approved | |
PoshDevOps 0.0.6 | 421 | Wednesday, March 18, 2015 | Approved | |
PoshDevOps 0.0.4 | 371 | Wednesday, March 18, 2015 | Approved | |
PoshDevOps 0.0.2 | 380 | Monday, March 30, 2015 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about PoshDevOps and the PoshDevOps package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or PoshDevOps, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.