Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

16,561

Downloads of v 0.1.19183:

44

Last Update:

28 Jun 2022

Package Maintainer(s):

Software Author(s):

  • CircleCI

Tags:

ci

circleci-cli (Install)

This is not the latest version of circleci-cli (Install) available.

  • 1
  • 2
  • 3

0.1.19183 | Updated: 28 Jun 2022

Downloads:

16,561

Downloads of v 0.1.19183:

44

Maintainer(s):

Software Author(s):

  • CircleCI

Tags:

ci

circleci-cli (Install) 0.1.19183

This is not the latest version of circleci-cli (Install) available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install circleci-cli (Install), run the following command from the command line or from PowerShell:

>

To upgrade circleci-cli (Install), run the following command from the command line or from PowerShell:

>

To uninstall circleci-cli (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade circleci-cli -y --source="'INTERNAL REPO URL'" --version="'0.1.19183'" [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 circleci-cli -y --source="'INTERNAL REPO URL'" --version="'0.1.19183'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install circleci-cli
  win_chocolatey:
    name: circleci-cli
    version: '0.1.19183'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'circleci-cli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.1.19183'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller circleci-cli
{
    Name     = "circleci-cli"
    Version  = "0.1.19183"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'circleci-cli':
  ensure   => '0.1.19183',
  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.

Package Approved

This package was approved as a trusted package on 28 Jun 2022.

Description

Command line tool for performing tasks related to a CircleCI project. Enables you to run local builds, debug your continuous integration config files, and manage Orbs.


tools\chocolateyinstall.ps1
# This file is generated by `update-version.ps1`, and commited to the repository
# under a version tag.
$ErrorActionPreference = 'Stop';
$toolsDir = Split-Path -parent $MyInvocation.MyCommand.Definition
$url64 = 'https://github.com/CircleCI-Public/circleci-cli/releases/download/v0.1.19183/circleci-cli_0.1.19183_windows_amd64.zip'

$packageParams = @{
  packageName    = $env:ChocolateyPackageName
  unzipLocation  = $toolsDir
  url64          = $url64
  checksum64     = '387fc8b4dd0f5ea59695662716f9a02b6fc51fe9732ef6d1a441d27b0c8af1cd'
  checksumType64 = 'sha256'
}
Install-ChocolateyZipPackage @packageParams

Log in or click on link to see number of positives.

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
circleci-cli (Install) 0.1.30401 66 Tuesday, March 5, 2024 Approved
circleci-cli (Install) 0.1.30163 102 Wednesday, February 14, 2024 Approved
circleci-cli (Install) 0.1.30084 11 Wednesday, February 14, 2024 Approved
circleci-cli (Install) 0.1.29936 166 Thursday, January 11, 2024 Approved
circleci-cli (Install) 0.1.29658 119 Friday, December 15, 2023 Approved
circleci-cli (Install) 0.1.29560 47 Monday, December 11, 2023 Approved
circleci-cli (Install) 0.1.29314 161 Wednesday, November 8, 2023 Approved
circleci-cli (Install) 0.1.29041 194 Thursday, October 5, 2023 Approved
circleci-cli (Install) 0.1.27054 1023 Thursday, June 15, 2023 Approved
circleci-cli (Install) 0.1.26896 50 Monday, June 12, 2023 Approved
circleci-cli (Install) 0.1.26837 153 Tuesday, May 16, 2023 Approved
circleci-cli (Install) 0.1.26786 25 Tuesday, May 16, 2023 Approved
circleci-cli (Install) 0.1.26343 97 Thursday, May 4, 2023 Approved
circleci-cli (Install) 0.1.26255 41 Tuesday, May 2, 2023 Approved
circleci-cli (Install) 0.1.26094 74 Monday, April 24, 2023 Approved
circleci-cli (Install) 0.1.26061 58 Thursday, April 20, 2023 Approved
circleci-cli (Install) 0.1.25848 36 Wednesday, April 19, 2023 Approved
circleci-cli (Install) 0.1.25725 110 Wednesday, April 5, 2023 Approved
circleci-cli (Install) 0.1.25638 63 Friday, March 31, 2023 Approved
circleci-cli (Install) 0.1.25569 41 Thursday, March 30, 2023 Approved
circleci-cli (Install) 0.1.25519 24 Wednesday, March 29, 2023 Approved
circleci-cli (Install) 0.1.25085 69 Thursday, March 23, 2023 Approved
circleci-cli (Install) 0.1.25007 22 Thursday, March 23, 2023 Approved
circleci-cli (Install) 0.1.24783 35 Wednesday, March 22, 2023 Approved
circleci-cli (Install) 0.1.24705 25 Wednesday, March 22, 2023 Approved
circleci-cli (Install) 0.1.24495 40 Monday, March 20, 2023 Approved
circleci-cli (Install) 0.1.24435 31 Monday, March 20, 2023 Approved
circleci-cli (Install) 0.1.23845 106 Monday, March 6, 2023 Approved
circleci-cli (Install) 0.1.23816 45 Friday, March 3, 2023 Approved
circleci-cli (Install) 0.1.22924 352 Thursday, December 22, 2022 Approved
circleci-cli (Install) 0.1.22875 71 Friday, December 16, 2022 Approved
circleci-cli (Install) 0.1.22770 89 Monday, December 5, 2022 Approved
circleci-cli (Install) 0.1.22675 63 Monday, November 28, 2022 Approved
circleci-cli (Install) 0.1.22426 132 Wednesday, November 9, 2022 Approved
circleci-cli (Install) 0.1.22272 194 Tuesday, October 11, 2022 Approved
circleci-cli (Install) 0.1.22100 74 Wednesday, October 5, 2022 Approved
circleci-cli (Install) 0.1.22050 32 Tuesday, October 4, 2022 Approved
circleci-cli (Install) 0.1.21898 45 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21867 22 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21844 36 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21412 100 Friday, September 23, 2022 Approved
circleci-cli (Install) 0.1.21390 38 Friday, September 23, 2022 Approved
circleci-cli (Install) 0.1.21289 43 Wednesday, September 21, 2022 Approved
circleci-cli (Install) 0.1.21194 51 Monday, September 19, 2022 Approved
circleci-cli (Install) 0.1.21091 83 Monday, September 12, 2022 Approved
circleci-cli (Install) 0.1.20856 110 Monday, August 29, 2022 Approved
circleci-cli (Install) 0.1.20788 67 Wednesday, August 24, 2022 Approved
circleci-cli (Install) 0.1.20729 48 Tuesday, August 23, 2022 Approved
circleci-cli (Install) 0.1.20629 68 Thursday, August 18, 2022 Approved
circleci-cli (Install) 0.1.20597 33 Thursday, August 18, 2022 Approved
circleci-cli (Install) 0.1.20500 173 Thursday, August 11, 2022 Approved
circleci-cli (Install) 0.1.20397 133 Thursday, July 28, 2022 Approved
circleci-cli (Install) 0.1.20374 44 Wednesday, July 27, 2022 Approved
circleci-cli (Install) 0.1.20323 44 Tuesday, July 26, 2022 Approved
circleci-cli (Install) 0.1.20239 61 Friday, July 22, 2022 Approved
circleci-cli (Install) 0.1.20144 51 Wednesday, July 20, 2022 Approved
circleci-cli (Install) 0.1.20105 32 Wednesday, July 20, 2022 Approved
circleci-cli (Install) 0.1.19878 96 Thursday, July 14, 2022 Approved
circleci-cli (Install) 0.1.19836 39 Thursday, July 14, 2022 Approved
circleci-cli (Install) 0.1.19787 46 Wednesday, July 13, 2022 Approved
circleci-cli (Install) 0.1.19666 73 Thursday, July 7, 2022 Approved
circleci-cli (Install) 0.1.19626 49 Tuesday, July 5, 2022 Approved
circleci-cli (Install) 0.1.19603 51 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19572 31 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19541 27 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19492 55 Friday, July 1, 2022 Approved
circleci-cli (Install) 0.1.19470 50 Thursday, June 30, 2022 Approved
circleci-cli (Install) 0.1.19351 42 Wednesday, June 29, 2022 Approved
circleci-cli (Install) 0.1.19293 38 Wednesday, June 29, 2022 Approved
circleci-cli (Install) 0.1.19183 44 Tuesday, June 28, 2022 Approved
circleci-cli (Install) 0.1.18980 135 Monday, June 13, 2022 Approved
circleci-cli (Install) 0.1.18894 87 Tuesday, June 7, 2022 Approved
circleci-cli (Install) 0.1.18869 32 Tuesday, June 7, 2022 Approved
circleci-cli (Install) 0.1.18532 142 Thursday, May 19, 2022 Approved
circleci-cli (Install) 0.1.18446 56 Wednesday, May 18, 2022 Approved
circleci-cli (Install) 0.1.18305 45 Tuesday, May 17, 2022 Approved
circleci-cli (Install) 0.1.17554 119 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17522 39 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17497 38 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17464 38 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17429 40 Wednesday, May 4, 2022 Approved
circleci-cli (Install) 0.1.17183 119 Friday, April 22, 2022 Approved
circleci-cli (Install) 0.1.17142 125 Monday, April 11, 2022 Approved
circleci-cli (Install) 0.1.17110 47 Monday, April 11, 2022 Approved
circleci-cli (Install) 0.1.17087 54 Friday, April 8, 2022 Approved
circleci-cli (Install) 0.1.16947 300 Tuesday, February 22, 2022 Approved
circleci-cli (Install) 0.1.16737 123 Thursday, February 10, 2022 Approved
circleci-cli (Install) 0.1.16535 407 Thursday, December 2, 2021 Approved
circleci-cli (Install) 0.1.16508 107 Friday, November 26, 2021 Approved
circleci-cli (Install) 0.1.16482 48 Thursday, November 25, 2021 Approved
circleci-cli (Install) 0.1.16422 66 Wednesday, November 24, 2021 Approved
circleci-cli (Install) 0.1.16277 108 Tuesday, November 16, 2021 Approved
circleci-cli (Install) 0.1.16225 134 Friday, November 5, 2021 Approved
circleci-cli (Install) 0.1.16192 76 Wednesday, November 3, 2021 Approved
circleci-cli (Install) 0.1.15932 374 Wednesday, September 1, 2021 Approved
circleci-cli (Install) 0.1.15900 107 Monday, August 23, 2021 Approved
circleci-cli (Install) 0.1.15848 66 Wednesday, August 18, 2021 Approved
circleci-cli (Install) 0.1.15824 86 Thursday, August 12, 2021 Approved
circleci-cli (Install) 0.1.15801 49 Wednesday, August 11, 2021 Approved
circleci-cli (Install) 0.1.15778 50 Wednesday, August 11, 2021 Approved
circleci-cli (Install) 0.1.15663 82 Thursday, August 5, 2021 Approved
circleci-cli (Install) 0.1.15630 49 Wednesday, August 4, 2021 Approved
circleci-cli (Install) 0.1.15606 91 Friday, July 30, 2021 Approved
circleci-cli (Install) 0.1.15528 92 Friday, July 23, 2021 Approved
circleci-cli (Install) 0.1.15410 136 Monday, July 5, 2021 Approved
circleci-cli (Install) 0.1.15384 131 Monday, June 21, 2021 Approved
circleci-cli (Install) 0.1.15338 113 Friday, June 11, 2021 Approved
circleci-cli (Install) 0.1.15195 562 Monday, March 22, 2021 Approved
circleci-cli (Install) 0.1.15172 58 Monday, March 22, 2021 Approved
circleci-cli (Install) 0.1.15149 62 Friday, March 19, 2021 Approved
circleci-cli (Install) 0.1.15108 119 Tuesday, March 9, 2021 Approved
circleci-cli (Install) 0.1.15085 86 Tuesday, March 2, 2021 Approved
circleci-cli (Install) 0.1.15044 74 Friday, February 26, 2021 Approved
circleci-cli (Install) 0.1.14966 81 Tuesday, February 23, 2021 Approved
circleci-cli (Install) 0.1.14915 74 Tuesday, February 16, 2021 Approved
circleci-cli (Install) 0.1.14827 109 Tuesday, February 9, 2021 Approved
circleci-cli (Install) 0.1.12331 80 Friday, February 5, 2021 Approved
circleci-cli (Install) 0.1.12119 57 Monday, February 1, 2021 Approved
circleci-cli (Install) 0.1.11924 134 Wednesday, January 20, 2021 Approved
circleci-cli (Install) 0.1.11910 64 Wednesday, January 20, 2021 Approved
circleci-cli (Install) 0.1.11756 100 Wednesday, January 13, 2021 Approved
circleci-cli (Install) 0.1.11715 75 Tuesday, January 12, 2021 Approved
circleci-cli (Install) 0.1.11661 90 Monday, January 11, 2021 Approved
circleci-cli (Install) 0.1.11540 184 Tuesday, December 15, 2020 Approved
circleci-cli (Install) 0.1.11508 182 Friday, November 20, 2020 Approved
circleci-cli (Install) 0.1.11458 173 Wednesday, November 4, 2020 Approved
circleci-cli (Install) 0.1.11417 102 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11393 70 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11369 63 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11346 89 Tuesday, October 27, 2020 Approved
circleci-cli (Install) 0.1.11278 87 Friday, October 23, 2020 Approved
circleci-cli (Install) 0.1.11255 71 Friday, October 23, 2020 Approved
circleci-cli (Install) 0.1.11232 77 Thursday, October 22, 2020 Approved
circleci-cli (Install) 0.1.11146 95 Tuesday, October 20, 2020 Approved
circleci-cli (Install) 0.1.11113 70 Tuesday, October 20, 2020 Approved
circleci-cli (Install) 0.1.11062 67 Monday, October 19, 2020 Approved
circleci-cli (Install) 0.1.10993 82 Friday, October 16, 2020 Approved
circleci-cli (Install) 0.1.10934 87 Wednesday, October 14, 2020 Approved
circleci-cli (Install) 0.1.10803 100 Friday, October 9, 2020 Approved
circleci-cli (Install) 0.1.10699 89 Wednesday, October 7, 2020 Approved
circleci-cli (Install) 0.1.10656 75 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10642 71 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10583 75 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10458 82 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10370 85 Friday, October 2, 2020 Approved
circleci-cli (Install) 0.1.10211 74 Thursday, October 1, 2020 Approved
circleci-cli (Install) 0.1.10021 82 Wednesday, September 30, 2020 Approved
circleci-cli (Install) 0.1.9988 81 Monday, September 28, 2020 Approved
circleci-cli (Install) 0.1.9578 182 Monday, September 14, 2020 Approved
circleci-cli (Install) 0.1.9527 90 Wednesday, September 9, 2020 Approved
circleci-cli (Install) 0.1.9504 77 Wednesday, September 9, 2020 Approved
circleci-cli (Install) 0.1.9454 106 Thursday, September 3, 2020 Approved
circleci-cli (Install) 0.1.9431 107 Friday, August 28, 2020 Approved
circleci-cli (Install) 0.1.9399 98 Monday, August 24, 2020 Approved
circleci-cli (Install) 0.1.9321 151 Wednesday, August 12, 2020 Approved
circleci-cli (Install) 0.1.9066 125 Tuesday, August 4, 2020 Approved
circleci-cli (Install) 0.1.8945 110 Thursday, July 30, 2020 Approved
circleci-cli (Install) 0.1.8921 73 Wednesday, July 29, 2020 Approved
circleci-cli (Install) 0.1.8888 61 Wednesday, July 29, 2020 Approved
circleci-cli (Install) 0.1.8764 163 Thursday, July 16, 2020 Approved
circleci-cli (Install) 0.1.8731 94 Monday, July 13, 2020 Approved
circleci-cli (Install) 0.1.8599 192 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8574 66 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8559 66 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8302 131 Monday, June 15, 2020 Approved
circleci-cli (Install) 0.1.7971 95 Tuesday, June 9, 2020 Approved
circleci-cli (Install) 0.1.7645 81 Tuesday, May 19, 2020 Approved
cicleci-cli (Install) 0.1.7251 93 Saturday, May 9, 2020 Approved
cicleci-cli (Install) 0.1.6648 121 Monday, March 2, 2020 Approved
cicleci-cli (Install) 0.1.5879 126 Monday, January 20, 2020 Approved

This package has no dependencies.

Discussion for the circleci-cli (Install) Package

Ground Rules:

  • This discussion is only about circleci-cli (Install) and the circleci-cli (Install) 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 circleci-cli (Install), 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.
comments powered by Disqus