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:

13,074

Downloads of v 3.20.0:

112

Last Update:

07 Mar 2023

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

3.20.0 | Updated: 07 Mar 2023

Downloads:

13,074

Downloads of v 3.20.0:

112

Maintainer(s):

Software Author(s):

  • Andrey Nering

Task - Build System for Go 3.20.0

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="'3.20.0'" [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="'3.20.0'" 
$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: '3.20.0'
    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  '3.20.0'
end

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


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

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


package { 'go-task':
  ensure   => '3.20.0',
  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.

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 07 Mar 2023.

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/v3.20.0/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/v3.20.0, and download from there.

   i686:   https://github.com/go-task/task/releases/download/v3.20.0/task_windows_386.zip
   x86_64: https://github.com/go-task/task/releases/download/v3.20.0/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:   7625d0e6629f9ebf574460eea44f3b1789a7b847a8bf6181fbf0b8bdb7e5e1cf6d8139b2bcc2da1bf61f5e08adbc50ee9f54bad5c3dff2be3755e6fa05e4654b
   checksum64: 669953df421d0c08f84bb1b21d76a3747705758b49bff7c60bd05a05f911ad8e0cf284022209fffd067299935d37cf6d518f75eae571e41037e0dee14259b02d

File 'LICENSE.txt' obtained from:
   https://github.com/go-task/task/blob/v3.20.0/LICENSE
tools\x64\task.exe
md5: 06B82C0D1C187999E9D9ADC3DA0FAA03 | sha1: 3D03131C9C954E310BB02A40788490ECB3C1B774 | sha256: 440353614AED2039C0D0AAD7BC9B0D6D7514B382D4EDC11D16309655FDCDF2E6 | sha512: 669953DF421D0C08F84BB1B21D76A3747705758B49BFF7C60BD05A05F911AD8E0CF284022209FFFD067299935D37CF6D518F75EAE571E41037E0DEE14259B02D
tools\x86\task.exe
md5: 8701067E5D0B2A84B5910C701B9017A8 | sha1: 25DD371625B606D10FFDE9A89DBA1BE14184ABBD | sha256: 80D64BB0A9BD03B247B851D48FB45D19DDC27E9783348A72D2870C1633D58B19 | sha512: 7625D0E6629F9EBF574460EEA44F3B1789A7B847A8BF6181FBF0B8BDB7E5E1CF6D8139B2BCC2DA1BF61F5E08ADBC50EE9F54BAD5C3DFF2BE3755E6FA05E4654B

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.35.1 7 Saturday, March 16, 2024
Waiting for Maintainer
gravatar
Task - Build System for Go 3.35.0 13 Friday, March 1, 2024
Waiting for Maintainer
gravatar
Task - Build System for Go 3.34.0 161 Thursday, February 8, 2024 Approved
Task - Build System for Go 3.33.1 75 Monday, February 5, 2024 Approved
Task - Build System for Go 3.33.0 864 Tuesday, January 2, 2024 Approved
Task - Build System for Go 3.32.0 229 Sunday, December 17, 2023 Approved
Task - Build System for Go 3.31.0 818 Monday, October 23, 2023 Approved
Task - Build System for Go 3.30.1 190 Wednesday, October 11, 2023 Approved
Task - Build System for Go 3.30.0 152 Friday, September 22, 2023 Approved
Task - Build System for Go 3.29.1 764 Monday, September 18, 2023 Approved
Task - Build System for Go 3.28.0 210 Saturday, September 2, 2023 Approved
Task - Build System for Go 3.27.1 306 Saturday, August 5, 2023 Approved
Task - Build System for Go 3.27.0 44 Friday, August 4, 2023 Approved
Task - Build System for Go 3.26.0 116 Wednesday, August 2, 2023 Approved
Task - Build System for Go 3.25.0 372 Sunday, June 25, 2023 Approved
Task - Build System for Go 3.24.0 374 Wednesday, May 24, 2023 Approved
Task - Build System for Go 3.23.0 547 Monday, March 27, 2023 Approved
Task - Build System for Go 3.22.0 187 Saturday, March 11, 2023 Approved
Task - Build System for Go 3.21.0 101 Wednesday, March 8, 2023 Approved
Task - Build System for Go 3.20.0 112 Tuesday, March 7, 2023 Approved
Task - Build System for Go 3.19.1 469 Sunday, January 15, 2023 Approved
Task - Build System for Go 3.19.0 256 Tuesday, December 13, 2022 Approved
Task - Build System for Go 3.18.0 273 Sunday, November 13, 2022 Approved
Task - Build System for Go 3.17.0 310 Wednesday, October 19, 2022 Approved
Task - Build System for Go 3.16.0 102 Saturday, October 15, 2022 Approved
Task - Build System for Go 3.15.2 139 Saturday, October 8, 2022 Approved
Task - Build System for Go 3.15.0 201 Sunday, September 11, 2022 Approved
Task - Build System for Go 3.14.1 224 Thursday, August 4, 2022 Approved
Task - Build System for Go 3.14.0 158 Saturday, July 9, 2022 Approved
Task - Build System for Go 3.13.0 145 Sunday, June 19, 2022 Approved
Task - Build System for Go 3.12.1 219 Tuesday, May 10, 2022 Approved
Task - Build System for Go 3.12.0 175 Saturday, April 2, 2022 Approved
Task - Build System for Go 3.11.0 135 Tuesday, March 1, 2022 Approved
Task - Build System for Go 3.10.0 92 Wednesday, January 5, 2022 Approved
Task - Build System for Go 3.9.2 93 Friday, December 3, 2021 Approved
Task - Build System for Go 3.9.1 58 Monday, November 29, 2021 Approved
Task - Build System for Go 3.9.0 83 Sunday, October 3, 2021 Approved
Task - Build System for Go 3.8.0 92 Wednesday, September 29, 2021 Approved
Task - Build System for Go 3.7.3 85 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.7.0 82 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.6.0 82 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.5.0 79 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.4.3 90 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.2 83 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.1 95 Monday, September 27, 2021 Approved
Task - Build System for Go 3.3.0 89 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.2 100 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.1 85 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.0 74 Monday, September 27, 2021 Approved
Task - Build System for Go 3.1.0 68 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.1 80 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.0 95 Saturday, September 25, 2021 Approved
Task - Build System for Go 3.0.0-preiew4 59 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew3 86 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew2 81 Thursday, September 23, 2021 Approved
Task - Build System for Go 3.0.0-preiew1 64 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.1 118 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.0 88 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.7.1 90 Monday, September 20, 2021 Approved
Task - Build System for Go 2.7.0 88 Monday, September 20, 2021 Approved
Task - Build System for Go 2.6.0 109 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.2 68 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.1 63 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.0 104 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.4.0 92 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.3.0 88 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.2.1 58 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.2.0 82 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.1 70 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.0 61 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.3 56 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.2 61 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.1 72 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.0 54 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.4 59 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.3 51 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.2 40 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.1 49 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.0 56 Friday, September 17, 2021 Approved
Task - Build System for Go 1.3.0 79 Friday, September 17, 2021 Approved
Task - Build System for Go 1.2.0 49 Friday, September 17, 2021 Approved
Task - Build System for Go 1.1.0 55 Friday, September 17, 2021 Approved
Task - Build System for Go 1.0.0 55 Wednesday, September 15, 2021 Approved

  • Improve behavior and performance of status checking when using the timestamp mode (#976, #977 by @aminya).

  • Performance optimizations were made for large Taskfiles (#982 by @pd93).

  • Add ability to configure options for the set and shopt builtins (#908, #929 by @pd93, Documentation).

  • Add new platforms: attribute to task and cmd, so it's now possible to choose in which platforms that given task or command will be run on. Possible values are operating system (GOOS), architecture (GOARCH) or a combination of the two. Example: platforms: [linux], platforms: [amd64] or platforms: [linux/amd64]. Other platforms will be skipped (#978, #980 by @leaanthony).


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