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:

21,115

Downloads of v 0.1.17464:

57

Last Update:

05 May 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.17464 | Updated: 05 May 2022

Downloads:

21,115

Downloads of v 0.1.17464:

57

Maintainer(s):

Software Author(s):

  • CircleCI

Tags:

ci

circleci-cli (Install) 0.1.17464

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

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by CircleCI. The inclusion of CircleCI trademark(s), if any, upon this webpage is solely to identify CircleCI 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 Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

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.17464'" [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.17464'" 
$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.17464'
    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.17464'
end

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


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

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


package { 'circleci-cli':
  ensure   => '0.1.17464',
  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 05 May 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.17464/circleci-cli_0.1.17464_windows_amd64.zip'

$packageParams = @{
  packageName    = $env:ChocolateyPackageName
  unzipLocation  = $toolsDir
  url64          = $url64
  checksum64     = '44f90ae72ee5de8a8f991aa1ae29c42c7af8f58887bd21c211a7471c04f24130'
  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.31425 210 Tuesday, January 21, 2025 Approved
circleci-cli (Install) 0.1.31151 214 Monday, November 18, 2024 Approved
circleci-cli (Install) 0.1.30995 264 Friday, August 23, 2024 Approved
circleci-cli (Install) 0.1.30948 24 Thursday, August 22, 2024 Approved
circleci-cli (Install) 0.1.30888 34 Tuesday, August 20, 2024 Approved
circleci-cli (Install) 0.1.30549 508 Thursday, March 14, 2024 Approved
circleci-cli (Install) 0.1.30401 93 Tuesday, March 5, 2024 Approved
circleci-cli (Install) 0.1.30163 122 Wednesday, February 14, 2024 Approved
circleci-cli (Install) 0.1.30084 30 Wednesday, February 14, 2024 Approved
circleci-cli (Install) 0.1.29936 183 Thursday, January 11, 2024 Approved
circleci-cli (Install) 0.1.29658 138 Friday, December 15, 2023 Approved
circleci-cli (Install) 0.1.29560 68 Monday, December 11, 2023 Approved
circleci-cli (Install) 0.1.29314 190 Wednesday, November 8, 2023 Approved
circleci-cli (Install) 0.1.29041 216 Thursday, October 5, 2023 Approved
circleci-cli (Install) 0.1.27054 1038 Thursday, June 15, 2023 Approved
circleci-cli (Install) 0.1.26896 69 Monday, June 12, 2023 Approved
circleci-cli (Install) 0.1.26837 182 Tuesday, May 16, 2023 Approved
circleci-cli (Install) 0.1.26786 41 Tuesday, May 16, 2023 Approved
circleci-cli (Install) 0.1.26343 115 Thursday, May 4, 2023 Approved
circleci-cli (Install) 0.1.26255 60 Tuesday, May 2, 2023 Approved
circleci-cli (Install) 0.1.26094 93 Monday, April 24, 2023 Approved
circleci-cli (Install) 0.1.26061 79 Thursday, April 20, 2023 Approved
circleci-cli (Install) 0.1.25848 58 Wednesday, April 19, 2023 Approved
circleci-cli (Install) 0.1.25725 130 Wednesday, April 5, 2023 Approved
circleci-cli (Install) 0.1.25638 88 Friday, March 31, 2023 Approved
circleci-cli (Install) 0.1.25569 57 Thursday, March 30, 2023 Approved
circleci-cli (Install) 0.1.25519 40 Wednesday, March 29, 2023 Approved
circleci-cli (Install) 0.1.25085 83 Thursday, March 23, 2023 Approved
circleci-cli (Install) 0.1.25007 38 Thursday, March 23, 2023 Approved
circleci-cli (Install) 0.1.24783 48 Wednesday, March 22, 2023 Approved
circleci-cli (Install) 0.1.24705 42 Wednesday, March 22, 2023 Approved
circleci-cli (Install) 0.1.24495 59 Monday, March 20, 2023 Approved
circleci-cli (Install) 0.1.24435 55 Monday, March 20, 2023 Approved
circleci-cli (Install) 0.1.23845 127 Monday, March 6, 2023 Approved
circleci-cli (Install) 0.1.23816 57 Friday, March 3, 2023 Approved
circleci-cli (Install) 0.1.22924 365 Thursday, December 22, 2022 Approved
circleci-cli (Install) 0.1.22875 89 Friday, December 16, 2022 Approved
circleci-cli (Install) 0.1.22770 105 Monday, December 5, 2022 Approved
circleci-cli (Install) 0.1.22675 83 Monday, November 28, 2022 Approved
circleci-cli (Install) 0.1.22426 148 Wednesday, November 9, 2022 Approved
circleci-cli (Install) 0.1.22272 218 Tuesday, October 11, 2022 Approved
circleci-cli (Install) 0.1.22100 86 Wednesday, October 5, 2022 Approved
circleci-cli (Install) 0.1.22050 50 Tuesday, October 4, 2022 Approved
circleci-cli (Install) 0.1.21898 64 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21867 44 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21844 51 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21412 117 Friday, September 23, 2022 Approved
circleci-cli (Install) 0.1.21390 53 Friday, September 23, 2022 Approved
circleci-cli (Install) 0.1.21289 63 Wednesday, September 21, 2022 Approved
circleci-cli (Install) 0.1.21194 67 Monday, September 19, 2022 Approved
circleci-cli (Install) 0.1.21091 101 Monday, September 12, 2022 Approved
circleci-cli (Install) 0.1.20856 132 Monday, August 29, 2022 Approved
circleci-cli (Install) 0.1.20788 88 Wednesday, August 24, 2022 Approved
circleci-cli (Install) 0.1.20729 69 Tuesday, August 23, 2022 Approved
circleci-cli (Install) 0.1.20629 87 Thursday, August 18, 2022 Approved
circleci-cli (Install) 0.1.20597 49 Thursday, August 18, 2022 Approved
circleci-cli (Install) 0.1.20500 192 Thursday, August 11, 2022 Approved
circleci-cli (Install) 0.1.20397 151 Thursday, July 28, 2022 Approved
circleci-cli (Install) 0.1.20374 68 Wednesday, July 27, 2022 Approved
circleci-cli (Install) 0.1.20323 62 Tuesday, July 26, 2022 Approved
circleci-cli (Install) 0.1.20239 79 Friday, July 22, 2022 Approved
circleci-cli (Install) 0.1.20144 71 Wednesday, July 20, 2022 Approved
circleci-cli (Install) 0.1.20105 50 Wednesday, July 20, 2022 Approved
circleci-cli (Install) 0.1.19878 120 Thursday, July 14, 2022 Approved
circleci-cli (Install) 0.1.19836 54 Thursday, July 14, 2022 Approved
circleci-cli (Install) 0.1.19787 73 Wednesday, July 13, 2022 Approved
circleci-cli (Install) 0.1.19666 90 Thursday, July 7, 2022 Approved
circleci-cli (Install) 0.1.19626 66 Tuesday, July 5, 2022 Approved
circleci-cli (Install) 0.1.19603 73 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19572 52 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19541 46 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19492 69 Friday, July 1, 2022 Approved
circleci-cli (Install) 0.1.19470 65 Thursday, June 30, 2022 Approved
circleci-cli (Install) 0.1.19351 57 Wednesday, June 29, 2022 Approved
circleci-cli (Install) 0.1.19293 64 Wednesday, June 29, 2022 Approved
circleci-cli (Install) 0.1.19183 62 Tuesday, June 28, 2022 Approved
circleci-cli (Install) 0.1.18980 155 Monday, June 13, 2022 Approved
circleci-cli (Install) 0.1.18894 109 Tuesday, June 7, 2022 Approved
circleci-cli (Install) 0.1.18869 46 Tuesday, June 7, 2022 Approved
circleci-cli (Install) 0.1.18532 161 Thursday, May 19, 2022 Approved
circleci-cli (Install) 0.1.18446 75 Wednesday, May 18, 2022 Approved
circleci-cli (Install) 0.1.18305 62 Tuesday, May 17, 2022 Approved
circleci-cli (Install) 0.1.17554 136 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17522 52 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17497 59 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17464 57 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17429 62 Wednesday, May 4, 2022 Approved
circleci-cli (Install) 0.1.17183 139 Friday, April 22, 2022 Approved
circleci-cli (Install) 0.1.17142 153 Monday, April 11, 2022 Approved
circleci-cli (Install) 0.1.17110 66 Monday, April 11, 2022 Approved
circleci-cli (Install) 0.1.17087 70 Friday, April 8, 2022 Approved
circleci-cli (Install) 0.1.16947 316 Tuesday, February 22, 2022 Approved
circleci-cli (Install) 0.1.16737 141 Thursday, February 10, 2022 Approved
circleci-cli (Install) 0.1.16535 429 Thursday, December 2, 2021 Approved
circleci-cli (Install) 0.1.16508 125 Friday, November 26, 2021 Approved
circleci-cli (Install) 0.1.16482 66 Thursday, November 25, 2021 Approved
circleci-cli (Install) 0.1.16422 86 Wednesday, November 24, 2021 Approved
circleci-cli (Install) 0.1.16277 128 Tuesday, November 16, 2021 Approved
circleci-cli (Install) 0.1.16225 153 Friday, November 5, 2021 Approved
circleci-cli (Install) 0.1.16192 96 Wednesday, November 3, 2021 Approved
circleci-cli (Install) 0.1.15932 397 Wednesday, September 1, 2021 Approved
circleci-cli (Install) 0.1.15900 124 Monday, August 23, 2021 Approved
circleci-cli (Install) 0.1.15848 86 Wednesday, August 18, 2021 Approved
circleci-cli (Install) 0.1.15824 107 Thursday, August 12, 2021 Approved
circleci-cli (Install) 0.1.15801 72 Wednesday, August 11, 2021 Approved
circleci-cli (Install) 0.1.15778 72 Wednesday, August 11, 2021 Approved
circleci-cli (Install) 0.1.15663 103 Thursday, August 5, 2021 Approved
circleci-cli (Install) 0.1.15630 68 Wednesday, August 4, 2021 Approved
circleci-cli (Install) 0.1.15606 109 Friday, July 30, 2021 Approved
circleci-cli (Install) 0.1.15528 106 Friday, July 23, 2021 Approved
circleci-cli (Install) 0.1.15410 155 Monday, July 5, 2021 Approved
circleci-cli (Install) 0.1.15384 145 Monday, June 21, 2021 Approved
circleci-cli (Install) 0.1.15338 134 Friday, June 11, 2021 Approved
circleci-cli (Install) 0.1.15195 579 Monday, March 22, 2021 Approved
circleci-cli (Install) 0.1.15172 75 Monday, March 22, 2021 Approved
circleci-cli (Install) 0.1.15149 80 Friday, March 19, 2021 Approved
circleci-cli (Install) 0.1.15108 137 Tuesday, March 9, 2021 Approved
circleci-cli (Install) 0.1.15085 99 Tuesday, March 2, 2021 Approved
circleci-cli (Install) 0.1.15044 92 Friday, February 26, 2021 Approved
circleci-cli (Install) 0.1.14966 95 Tuesday, February 23, 2021 Approved
circleci-cli (Install) 0.1.14915 93 Tuesday, February 16, 2021 Approved
circleci-cli (Install) 0.1.14827 125 Tuesday, February 9, 2021 Approved
circleci-cli (Install) 0.1.12331 98 Friday, February 5, 2021 Approved
circleci-cli (Install) 0.1.12119 79 Monday, February 1, 2021 Approved
circleci-cli (Install) 0.1.11924 154 Wednesday, January 20, 2021 Approved
circleci-cli (Install) 0.1.11910 78 Wednesday, January 20, 2021 Approved
circleci-cli (Install) 0.1.11756 120 Wednesday, January 13, 2021 Approved
circleci-cli (Install) 0.1.11715 91 Tuesday, January 12, 2021 Approved
circleci-cli (Install) 0.1.11661 109 Monday, January 11, 2021 Approved
circleci-cli (Install) 0.1.11540 207 Tuesday, December 15, 2020 Approved
circleci-cli (Install) 0.1.11508 199 Friday, November 20, 2020 Approved
circleci-cli (Install) 0.1.11458 189 Wednesday, November 4, 2020 Approved
circleci-cli (Install) 0.1.11417 119 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11393 88 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11369 86 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11346 106 Tuesday, October 27, 2020 Approved
circleci-cli (Install) 0.1.11278 104 Friday, October 23, 2020 Approved
circleci-cli (Install) 0.1.11255 94 Friday, October 23, 2020 Approved
circleci-cli (Install) 0.1.11232 96 Thursday, October 22, 2020 Approved
circleci-cli (Install) 0.1.11146 116 Tuesday, October 20, 2020 Approved
circleci-cli (Install) 0.1.11113 91 Tuesday, October 20, 2020 Approved
circleci-cli (Install) 0.1.11062 90 Monday, October 19, 2020 Approved
circleci-cli (Install) 0.1.10993 100 Friday, October 16, 2020 Approved
circleci-cli (Install) 0.1.10934 105 Wednesday, October 14, 2020 Approved
circleci-cli (Install) 0.1.10803 116 Friday, October 9, 2020 Approved
circleci-cli (Install) 0.1.10699 109 Wednesday, October 7, 2020 Approved
circleci-cli (Install) 0.1.10656 95 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10642 92 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10583 93 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10458 98 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10370 111 Friday, October 2, 2020 Approved
circleci-cli (Install) 0.1.10211 94 Thursday, October 1, 2020 Approved
circleci-cli (Install) 0.1.10021 107 Wednesday, September 30, 2020 Approved
circleci-cli (Install) 0.1.9988 96 Monday, September 28, 2020 Approved
circleci-cli (Install) 0.1.9578 205 Monday, September 14, 2020 Approved
circleci-cli (Install) 0.1.9527 104 Wednesday, September 9, 2020 Approved
circleci-cli (Install) 0.1.9504 106 Wednesday, September 9, 2020 Approved
circleci-cli (Install) 0.1.9454 124 Thursday, September 3, 2020 Approved
circleci-cli (Install) 0.1.9431 123 Friday, August 28, 2020 Approved
circleci-cli (Install) 0.1.9399 119 Monday, August 24, 2020 Approved
circleci-cli (Install) 0.1.9321 166 Wednesday, August 12, 2020 Approved
circleci-cli (Install) 0.1.9066 139 Tuesday, August 4, 2020 Approved
circleci-cli (Install) 0.1.8945 138 Thursday, July 30, 2020 Approved
circleci-cli (Install) 0.1.8921 94 Wednesday, July 29, 2020 Approved
circleci-cli (Install) 0.1.8888 78 Wednesday, July 29, 2020 Approved
circleci-cli (Install) 0.1.8764 186 Thursday, July 16, 2020 Approved
circleci-cli (Install) 0.1.8731 114 Monday, July 13, 2020 Approved
circleci-cli (Install) 0.1.8599 218 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8574 87 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8559 90 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8302 153 Monday, June 15, 2020 Approved
circleci-cli (Install) 0.1.7971 112 Tuesday, June 9, 2020 Approved
circleci-cli (Install) 0.1.7645 103 Tuesday, May 19, 2020 Approved
cicleci-cli (Install) 0.1.7251 138 Saturday, May 9, 2020 Approved
cicleci-cli (Install) 0.1.6648 148 Monday, March 2, 2020 Approved
cicleci-cli (Install) 0.1.5879 141 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