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

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!

Learn More Register Now

Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

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

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
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
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

10,251

Downloads of v 2.2.1:

50

Last Update:

18 Sep 2021

Package Maintainer(s):

Software Author(s):

  • Andrey Nering

Tags:

go-task task golang build devops go makefile task-runner build-tool make taskfile

Task - Build System for Go

This is not the latest version of Task - Build System for Go available.

  • 1
  • 2
  • 3

2.2.1 | Updated: 18 Sep 2021

Downloads:

10,251

Downloads of v 2.2.1:

50

Maintainer(s):

Software Author(s):

  • Andrey Nering

Task - Build System for Go 2.2.1

This is not the latest version of Task - Build System for Go 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 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 Task - Build System for Go, run the following command from the command line or from PowerShell:

>

To upgrade Task - Build System for Go, run the following command from the command line or from PowerShell:

>

To uninstall Task - Build System for Go, 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 go-task -y --source="'INTERNAL REPO URL'" --version="'2.2.1'" [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 go-task -y --source="'INTERNAL REPO URL'" --version="'2.2.1'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install go-task
  win_chocolatey:
    name: go-task
    version: '2.2.1'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'go-task' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.2.1'
end

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


cChocoPackageInstaller go-task
{
    Name     = "go-task"
    Version  = "2.2.1"
    Source   = "INTERNAL REPO URL"
}

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


package { 'go-task':
  ensure   => '2.2.1',
  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 18 Sep 2021.

Description

Task is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make.


legal\LICENSE.txt
From: https://github.com/go-task/task/blob/v2.2.1/LICENSE

LICENSE

The MIT License (MIT)

Copyright (c) 2016 Andrey Nering

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
Package can be verified like this:

1. Go to https://github.com/go-task/task/releases/tag/v2.2.1, and download from there.

   i686:   https://github.com/go-task/task/releases/download/v2.2.1/task_windows_386.zip
   x86_64: https://github.com/go-task/task/releases/download/v2.2.1/task_windows_amd64.zip

   to download the archive and extract the executable. You may wish to rename one of the files.

2. You can use one of the following methods to obtain the SHA512 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

   checksum:   f9356cf55dffd77a5c75420a0099636c7341c0d1b57b9a012179043715a7f110d8a88a9d410b87710b2161ab7c67aa3562d51a41607722ab6ef4ad9f300e004d
   checksum64: d5793f41f53314792dc27e24a4e9daf6078cd0f63e68a52ca6f926a04c65360040035fe3cb156913b79914590117dbcd4e4ebb1ae0d9fa714d0ea9fa937fc6ea

File 'LICENSE.txt' obtained from:
   https://github.com/go-task/task/blob/v2.2.1/LICENSE
tools\x64\task.exe
md5: 359F65EE447E2A6AA1E3E68A6AE8CF08 | sha1: 3585195239EA561DC146EDC1C59E517D84FFDFAE | sha256: E546F6E3E75C7011EFB3FC4976C3F4DFA98CBD44A8D2767ADB962F6B9AD03788 | sha512: D5793F41F53314792DC27E24A4E9DAF6078CD0F63E68A52CA6F926A04C65360040035FE3CB156913B79914590117DBCD4E4EBB1AE0D9FA714D0EA9FA937FC6EA
tools\x86\task.exe
md5: 69512A8040027AFAA6E5D9D5CFE9308C | sha1: F753B45F77B3486C40E52D5F3711C6DDE6644001 | sha256: 4D4C2C2434028321371194ED11253EDB779FE79A840A448589C18A2C8D0F2A03 | sha512: F9356CF55DFFD77A5C75420A0099636C7341C0D1B57B9A012179043715A7F110D8A88A9D410B87710B2161AB7C67AA3562D51A41607722AB6EF4AD9F300E004D

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
Task - Build System for Go 3.30.1 186 Wednesday, October 11, 2023 Approved
Task - Build System for Go 3.30.0 148 Friday, September 22, 2023 Approved
Task - Build System for Go 3.29.1 759 Monday, September 18, 2023 Approved
Task - Build System for Go 3.28.0 205 Saturday, September 2, 2023 Approved
Task - Build System for Go 3.27.1 303 Saturday, August 5, 2023 Approved
Task - Build System for Go 3.27.0 40 Friday, August 4, 2023 Approved
Task - Build System for Go 3.26.0 109 Wednesday, August 2, 2023 Approved
Task - Build System for Go 3.25.0 368 Sunday, June 25, 2023 Approved
Task - Build System for Go 3.24.0 370 Wednesday, May 24, 2023 Approved
Task - Build System for Go 3.23.0 540 Monday, March 27, 2023 Approved
Task - Build System for Go 3.22.0 180 Saturday, March 11, 2023 Approved
Task - Build System for Go 3.21.0 80 Wednesday, March 8, 2023 Approved
Task - Build System for Go 3.20.0 106 Tuesday, March 7, 2023 Approved
Task - Build System for Go 3.19.1 463 Sunday, January 15, 2023 Approved
Task - Build System for Go 3.19.0 250 Tuesday, December 13, 2022 Approved
Task - Build System for Go 3.18.0 265 Sunday, November 13, 2022 Approved
Task - Build System for Go 3.17.0 296 Wednesday, October 19, 2022 Approved
Task - Build System for Go 3.16.0 94 Saturday, October 15, 2022 Approved
Task - Build System for Go 3.15.2 134 Saturday, October 8, 2022 Approved
Task - Build System for Go 3.15.0 195 Sunday, September 11, 2022 Approved
Task - Build System for Go 3.14.1 219 Thursday, August 4, 2022 Approved
Task - Build System for Go 3.14.0 150 Saturday, July 9, 2022 Approved
Task - Build System for Go 3.13.0 137 Sunday, June 19, 2022 Approved
Task - Build System for Go 3.12.1 213 Tuesday, May 10, 2022 Approved
Task - Build System for Go 3.12.0 170 Saturday, April 2, 2022 Approved
Task - Build System for Go 3.11.0 126 Tuesday, March 1, 2022 Approved
Task - Build System for Go 3.10.0 85 Wednesday, January 5, 2022 Approved
Task - Build System for Go 3.9.2 86 Friday, December 3, 2021 Approved
Task - Build System for Go 3.9.1 51 Monday, November 29, 2021 Approved
Task - Build System for Go 3.9.0 77 Sunday, October 3, 2021 Approved
Task - Build System for Go 3.8.0 85 Wednesday, September 29, 2021 Approved
Task - Build System for Go 3.7.3 78 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.7.0 74 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.6.0 76 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.5.0 73 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.4.3 85 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.2 76 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.1 88 Monday, September 27, 2021 Approved
Task - Build System for Go 3.3.0 84 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.2 95 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.1 79 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.0 66 Monday, September 27, 2021 Approved
Task - Build System for Go 3.1.0 62 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.1 74 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.0 90 Saturday, September 25, 2021 Approved
Task - Build System for Go 3.0.0-preiew4 53 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew3 79 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew2 77 Thursday, September 23, 2021 Approved
Task - Build System for Go 3.0.0-preiew1 55 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.1 110 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.0 83 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.7.1 85 Monday, September 20, 2021 Approved
Task - Build System for Go 2.7.0 82 Monday, September 20, 2021 Approved
Task - Build System for Go 2.6.0 103 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.2 58 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.1 57 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.0 99 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.4.0 86 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.3.0 79 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.2.1 50 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.2.0 78 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.1 64 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.0 55 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.3 52 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.2 54 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.1 65 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.0 47 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.4 53 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.3 44 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.2 34 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.1 42 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.0 50 Friday, September 17, 2021 Approved
Task - Build System for Go 1.3.0 71 Friday, September 17, 2021 Approved
Task - Build System for Go 1.2.0 42 Friday, September 17, 2021 Approved
Task - Build System for Go 1.1.0 49 Friday, September 17, 2021 Approved
Task - Build System for Go 1.0.0 48 Wednesday, September 15, 2021 Approved

Changelog

  • This repository now uses Go Modules (#143). We'll still keep the vendor directory in sync for some time, though;

  • Fixing a bug when the Taskfile has no tasks but includes another Taskfile (#150);

  • Fix a bug when calling another task or a dependency in an included Taskfile (#151).


This package has no dependencies.

Discussion for the Task - Build System for Go Package

Ground Rules:

  • This discussion is only about Task - Build System for Go and the Task - Build System for Go 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 Task - Build System for Go, 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