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:

17,245

Downloads of v 0.1.11393:

72

Last Update:

28 Oct 2020

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.11393 | Updated: 28 Oct 2020

Downloads:

17,245

Downloads of v 0.1.11393:

72

Maintainer(s):

Software Author(s):

  • CircleCI

Tags:

ci

circleci-cli (Install) 0.1.11393

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

  • 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:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

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

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


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

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


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

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.11393/circleci-cli_0.1.11393_windows_amd64.zip'

$packageParams = @{
  packageName    = $env:ChocolateyPackageName
  unzipLocation  = $toolsDir
  url64          = $url64
  checksum64     = '0929f8c5d3a173c3401e11b87b66c11110911dec0f7b149f77351aa1a955b718'
  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 69 Tuesday, March 5, 2024 Approved
circleci-cli (Install) 0.1.30163 107 Wednesday, February 14, 2024 Approved
circleci-cli (Install) 0.1.30084 14 Wednesday, February 14, 2024 Approved
circleci-cli (Install) 0.1.29936 170 Thursday, January 11, 2024 Approved
circleci-cli (Install) 0.1.29658 123 Friday, December 15, 2023 Approved
circleci-cli (Install) 0.1.29560 52 Monday, December 11, 2023 Approved
circleci-cli (Install) 0.1.29314 166 Wednesday, November 8, 2023 Approved
circleci-cli (Install) 0.1.29041 198 Thursday, October 5, 2023 Approved
circleci-cli (Install) 0.1.27054 1026 Thursday, June 15, 2023 Approved
circleci-cli (Install) 0.1.26896 55 Monday, June 12, 2023 Approved
circleci-cli (Install) 0.1.26837 155 Tuesday, May 16, 2023 Approved
circleci-cli (Install) 0.1.26786 30 Tuesday, May 16, 2023 Approved
circleci-cli (Install) 0.1.26343 100 Thursday, May 4, 2023 Approved
circleci-cli (Install) 0.1.26255 44 Tuesday, May 2, 2023 Approved
circleci-cli (Install) 0.1.26094 78 Monday, April 24, 2023 Approved
circleci-cli (Install) 0.1.26061 59 Thursday, April 20, 2023 Approved
circleci-cli (Install) 0.1.25848 38 Wednesday, April 19, 2023 Approved
circleci-cli (Install) 0.1.25725 112 Wednesday, April 5, 2023 Approved
circleci-cli (Install) 0.1.25638 66 Friday, March 31, 2023 Approved
circleci-cli (Install) 0.1.25569 45 Thursday, March 30, 2023 Approved
circleci-cli (Install) 0.1.25519 26 Wednesday, March 29, 2023 Approved
circleci-cli (Install) 0.1.25085 72 Thursday, March 23, 2023 Approved
circleci-cli (Install) 0.1.25007 25 Thursday, March 23, 2023 Approved
circleci-cli (Install) 0.1.24783 38 Wednesday, March 22, 2023 Approved
circleci-cli (Install) 0.1.24705 28 Wednesday, March 22, 2023 Approved
circleci-cli (Install) 0.1.24495 42 Monday, March 20, 2023 Approved
circleci-cli (Install) 0.1.24435 33 Monday, March 20, 2023 Approved
circleci-cli (Install) 0.1.23845 107 Monday, March 6, 2023 Approved
circleci-cli (Install) 0.1.23816 46 Friday, March 3, 2023 Approved
circleci-cli (Install) 0.1.22924 355 Thursday, December 22, 2022 Approved
circleci-cli (Install) 0.1.22875 76 Friday, December 16, 2022 Approved
circleci-cli (Install) 0.1.22770 91 Monday, December 5, 2022 Approved
circleci-cli (Install) 0.1.22675 64 Monday, November 28, 2022 Approved
circleci-cli (Install) 0.1.22426 134 Wednesday, November 9, 2022 Approved
circleci-cli (Install) 0.1.22272 196 Tuesday, October 11, 2022 Approved
circleci-cli (Install) 0.1.22100 78 Wednesday, October 5, 2022 Approved
circleci-cli (Install) 0.1.22050 35 Tuesday, October 4, 2022 Approved
circleci-cli (Install) 0.1.21898 48 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21867 26 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21844 39 Monday, October 3, 2022 Approved
circleci-cli (Install) 0.1.21412 105 Friday, September 23, 2022 Approved
circleci-cli (Install) 0.1.21390 43 Friday, September 23, 2022 Approved
circleci-cli (Install) 0.1.21289 47 Wednesday, September 21, 2022 Approved
circleci-cli (Install) 0.1.21194 56 Monday, September 19, 2022 Approved
circleci-cli (Install) 0.1.21091 84 Monday, September 12, 2022 Approved
circleci-cli (Install) 0.1.20856 111 Monday, August 29, 2022 Approved
circleci-cli (Install) 0.1.20788 68 Wednesday, August 24, 2022 Approved
circleci-cli (Install) 0.1.20729 51 Tuesday, August 23, 2022 Approved
circleci-cli (Install) 0.1.20629 69 Thursday, August 18, 2022 Approved
circleci-cli (Install) 0.1.20597 34 Thursday, August 18, 2022 Approved
circleci-cli (Install) 0.1.20500 175 Thursday, August 11, 2022 Approved
circleci-cli (Install) 0.1.20397 135 Thursday, July 28, 2022 Approved
circleci-cli (Install) 0.1.20374 50 Wednesday, July 27, 2022 Approved
circleci-cli (Install) 0.1.20323 46 Tuesday, July 26, 2022 Approved
circleci-cli (Install) 0.1.20239 64 Friday, July 22, 2022 Approved
circleci-cli (Install) 0.1.20144 53 Wednesday, July 20, 2022 Approved
circleci-cli (Install) 0.1.20105 35 Wednesday, July 20, 2022 Approved
circleci-cli (Install) 0.1.19878 101 Thursday, July 14, 2022 Approved
circleci-cli (Install) 0.1.19836 41 Thursday, July 14, 2022 Approved
circleci-cli (Install) 0.1.19787 51 Wednesday, July 13, 2022 Approved
circleci-cli (Install) 0.1.19666 76 Thursday, July 7, 2022 Approved
circleci-cli (Install) 0.1.19626 52 Tuesday, July 5, 2022 Approved
circleci-cli (Install) 0.1.19603 54 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19572 36 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19541 31 Monday, July 4, 2022 Approved
circleci-cli (Install) 0.1.19492 58 Friday, July 1, 2022 Approved
circleci-cli (Install) 0.1.19470 53 Thursday, June 30, 2022 Approved
circleci-cli (Install) 0.1.19351 44 Wednesday, June 29, 2022 Approved
circleci-cli (Install) 0.1.19293 41 Wednesday, June 29, 2022 Approved
circleci-cli (Install) 0.1.19183 47 Tuesday, June 28, 2022 Approved
circleci-cli (Install) 0.1.18980 137 Monday, June 13, 2022 Approved
circleci-cli (Install) 0.1.18894 89 Tuesday, June 7, 2022 Approved
circleci-cli (Install) 0.1.18869 33 Tuesday, June 7, 2022 Approved
circleci-cli (Install) 0.1.18532 145 Thursday, May 19, 2022 Approved
circleci-cli (Install) 0.1.18446 60 Wednesday, May 18, 2022 Approved
circleci-cli (Install) 0.1.18305 48 Tuesday, May 17, 2022 Approved
circleci-cli (Install) 0.1.17554 121 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17522 42 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17497 41 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17464 42 Thursday, May 5, 2022 Approved
circleci-cli (Install) 0.1.17429 43 Wednesday, May 4, 2022 Approved
circleci-cli (Install) 0.1.17183 122 Friday, April 22, 2022 Approved
circleci-cli (Install) 0.1.17142 127 Monday, April 11, 2022 Approved
circleci-cli (Install) 0.1.17110 54 Monday, April 11, 2022 Approved
circleci-cli (Install) 0.1.17087 57 Friday, April 8, 2022 Approved
circleci-cli (Install) 0.1.16947 301 Tuesday, February 22, 2022 Approved
circleci-cli (Install) 0.1.16737 126 Thursday, February 10, 2022 Approved
circleci-cli (Install) 0.1.16535 410 Thursday, December 2, 2021 Approved
circleci-cli (Install) 0.1.16508 109 Friday, November 26, 2021 Approved
circleci-cli (Install) 0.1.16482 52 Thursday, November 25, 2021 Approved
circleci-cli (Install) 0.1.16422 69 Wednesday, November 24, 2021 Approved
circleci-cli (Install) 0.1.16277 110 Tuesday, November 16, 2021 Approved
circleci-cli (Install) 0.1.16225 137 Friday, November 5, 2021 Approved
circleci-cli (Install) 0.1.16192 79 Wednesday, November 3, 2021 Approved
circleci-cli (Install) 0.1.15932 377 Wednesday, September 1, 2021 Approved
circleci-cli (Install) 0.1.15900 108 Monday, August 23, 2021 Approved
circleci-cli (Install) 0.1.15848 70 Wednesday, August 18, 2021 Approved
circleci-cli (Install) 0.1.15824 87 Thursday, August 12, 2021 Approved
circleci-cli (Install) 0.1.15801 50 Wednesday, August 11, 2021 Approved
circleci-cli (Install) 0.1.15778 51 Wednesday, August 11, 2021 Approved
circleci-cli (Install) 0.1.15663 83 Thursday, August 5, 2021 Approved
circleci-cli (Install) 0.1.15630 52 Wednesday, August 4, 2021 Approved
circleci-cli (Install) 0.1.15606 92 Friday, July 30, 2021 Approved
circleci-cli (Install) 0.1.15528 94 Friday, July 23, 2021 Approved
circleci-cli (Install) 0.1.15410 138 Monday, July 5, 2021 Approved
circleci-cli (Install) 0.1.15384 133 Monday, June 21, 2021 Approved
circleci-cli (Install) 0.1.15338 115 Friday, June 11, 2021 Approved
circleci-cli (Install) 0.1.15195 564 Monday, March 22, 2021 Approved
circleci-cli (Install) 0.1.15172 59 Monday, March 22, 2021 Approved
circleci-cli (Install) 0.1.15149 66 Friday, March 19, 2021 Approved
circleci-cli (Install) 0.1.15108 121 Tuesday, March 9, 2021 Approved
circleci-cli (Install) 0.1.15085 88 Tuesday, March 2, 2021 Approved
circleci-cli (Install) 0.1.15044 79 Friday, February 26, 2021 Approved
circleci-cli (Install) 0.1.14966 86 Tuesday, February 23, 2021 Approved
circleci-cli (Install) 0.1.14915 77 Tuesday, February 16, 2021 Approved
circleci-cli (Install) 0.1.14827 112 Tuesday, February 9, 2021 Approved
circleci-cli (Install) 0.1.12331 81 Friday, February 5, 2021 Approved
circleci-cli (Install) 0.1.12119 59 Monday, February 1, 2021 Approved
circleci-cli (Install) 0.1.11924 138 Wednesday, January 20, 2021 Approved
circleci-cli (Install) 0.1.11910 65 Wednesday, January 20, 2021 Approved
circleci-cli (Install) 0.1.11756 104 Wednesday, January 13, 2021 Approved
circleci-cli (Install) 0.1.11715 78 Tuesday, January 12, 2021 Approved
circleci-cli (Install) 0.1.11661 92 Monday, January 11, 2021 Approved
circleci-cli (Install) 0.1.11540 188 Tuesday, December 15, 2020 Approved
circleci-cli (Install) 0.1.11508 187 Friday, November 20, 2020 Approved
circleci-cli (Install) 0.1.11458 175 Wednesday, November 4, 2020 Approved
circleci-cli (Install) 0.1.11417 104 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11393 72 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11369 68 Wednesday, October 28, 2020 Approved
circleci-cli (Install) 0.1.11346 93 Tuesday, October 27, 2020 Approved
circleci-cli (Install) 0.1.11278 89 Friday, October 23, 2020 Approved
circleci-cli (Install) 0.1.11255 77 Friday, October 23, 2020 Approved
circleci-cli (Install) 0.1.11232 82 Thursday, October 22, 2020 Approved
circleci-cli (Install) 0.1.11146 100 Tuesday, October 20, 2020 Approved
circleci-cli (Install) 0.1.11113 73 Tuesday, October 20, 2020 Approved
circleci-cli (Install) 0.1.11062 68 Monday, October 19, 2020 Approved
circleci-cli (Install) 0.1.10993 85 Friday, October 16, 2020 Approved
circleci-cli (Install) 0.1.10934 90 Wednesday, October 14, 2020 Approved
circleci-cli (Install) 0.1.10803 103 Friday, October 9, 2020 Approved
circleci-cli (Install) 0.1.10699 92 Wednesday, October 7, 2020 Approved
circleci-cli (Install) 0.1.10656 78 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10642 78 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10583 77 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10458 83 Monday, October 5, 2020 Approved
circleci-cli (Install) 0.1.10370 87 Friday, October 2, 2020 Approved
circleci-cli (Install) 0.1.10211 79 Thursday, October 1, 2020 Approved
circleci-cli (Install) 0.1.10021 84 Wednesday, September 30, 2020 Approved
circleci-cli (Install) 0.1.9988 84 Monday, September 28, 2020 Approved
circleci-cli (Install) 0.1.9578 184 Monday, September 14, 2020 Approved
circleci-cli (Install) 0.1.9527 92 Wednesday, September 9, 2020 Approved
circleci-cli (Install) 0.1.9504 79 Wednesday, September 9, 2020 Approved
circleci-cli (Install) 0.1.9454 108 Thursday, September 3, 2020 Approved
circleci-cli (Install) 0.1.9431 109 Friday, August 28, 2020 Approved
circleci-cli (Install) 0.1.9399 100 Monday, August 24, 2020 Approved
circleci-cli (Install) 0.1.9321 152 Wednesday, August 12, 2020 Approved
circleci-cli (Install) 0.1.9066 127 Tuesday, August 4, 2020 Approved
circleci-cli (Install) 0.1.8945 113 Thursday, July 30, 2020 Approved
circleci-cli (Install) 0.1.8921 76 Wednesday, July 29, 2020 Approved
circleci-cli (Install) 0.1.8888 62 Wednesday, July 29, 2020 Approved
circleci-cli (Install) 0.1.8764 170 Thursday, July 16, 2020 Approved
circleci-cli (Install) 0.1.8731 98 Monday, July 13, 2020 Approved
circleci-cli (Install) 0.1.8599 196 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8574 70 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8559 69 Monday, June 29, 2020 Approved
circleci-cli (Install) 0.1.8302 136 Monday, June 15, 2020 Approved
circleci-cli (Install) 0.1.7971 97 Tuesday, June 9, 2020 Approved
circleci-cli (Install) 0.1.7645 84 Tuesday, May 19, 2020 Approved
cicleci-cli (Install) 0.1.7251 97 Saturday, May 9, 2020 Approved
cicleci-cli (Install) 0.1.6648 129 Monday, March 2, 2020 Approved
cicleci-cli (Install) 0.1.5879 128 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