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:

6,221

Downloads of v 3.23.0:

511

Last Update:

27 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.23.0 | Updated: 27 Mar 2023

Downloads:

6,221

Downloads of v 3.23.0:

511

Maintainer(s):

Software Author(s):

  • Andrey Nering

Task - Build System for Go 3.23.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.23.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.23.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.23.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.23.0'
end

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


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

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


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

Package Approved

This package was approved as a trusted package on 27 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.23.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.23.0, and download from there.

   i686:   https://github.com/go-task/task/releases/download/v3.23.0/task_windows_386.zip
   x86_64: https://github.com/go-task/task/releases/download/v3.23.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:   8e37e28f2069726a22b743bcd0b59770e51d23bc03da8b2e73743f13a34741f84163dd3c68e3beadf044151399734fc735ac3cf993e2dc1f86d090f592f46177
   checksum64: 2c0826a26c8e43221aa41b6968a7d8627856f7eb4eff7fd751611e7a01b4220ef48424d4cdba00350cf9fb9b76b0152815211a6836408224dc32d0a0e7652215

File 'LICENSE.txt' obtained from:
   https://github.com/go-task/task/blob/v3.23.0/LICENSE
tools\x64\task.exe
md5: B5F25F150085897F6C7E05340A20C7EB | sha1: 8327A5BFF88B95D652FC8E8621270ECF25291FCD | sha256: 6BAB17A905446965CF280B39DFE212C55E8A88AE05F9413023B87B83EF7353F7 | sha512: 2C0826A26C8E43221AA41B6968A7D8627856F7EB4EFF7FD751611E7A01B4220EF48424D4CDBA00350CF9FB9B76B0152815211A6836408224DC32D0A0E7652215
tools\x86\task.exe
md5: 1FBB64141D385A765D4E4BC638B39FC9 | sha1: E573374E76D97D1B8EB7BC314FE7FF053246A6AC | sha256: 9DD0F7151201A841D8FB6B866F33B1B0ED3403B4F5A70E419928F88EA11CE174 | sha512: 8E37E28F2069726A22B743BCD0B59770E51D23BC03DA8B2E73743F13A34741F84163DD3C68E3BEADF044151399734FC735AC3CF993E2DC1F86D090F592F46177

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.23.0 511 Monday, March 27, 2023 Approved
Task - Build System for Go 3.22.0 159 Saturday, March 11, 2023 Approved
Task - Build System for Go 3.21.0 60 Wednesday, March 8, 2023 Approved
Task - Build System for Go 3.20.0 88 Tuesday, March 7, 2023 Approved
Task - Build System for Go 3.19.1 456 Sunday, January 15, 2023 Approved
Task - Build System for Go 3.19.0 228 Tuesday, December 13, 2022 Approved
Task - Build System for Go 3.18.0 224 Sunday, November 13, 2022 Approved
Task - Build System for Go 3.17.0 245 Wednesday, October 19, 2022 Approved
Task - Build System for Go 3.16.0 69 Saturday, October 15, 2022 Approved
Task - Build System for Go 3.15.2 83 Saturday, October 8, 2022 Approved
Task - Build System for Go 3.15.0 165 Sunday, September 11, 2022 Approved
Task - Build System for Go 3.14.1 204 Thursday, August 4, 2022 Approved
Task - Build System for Go 3.14.0 141 Saturday, July 9, 2022 Approved
Task - Build System for Go 3.13.0 128 Sunday, June 19, 2022 Approved
Task - Build System for Go 3.12.1 206 Tuesday, May 10, 2022 Approved
Task - Build System for Go 3.12.0 161 Saturday, April 2, 2022 Approved
Task - Build System for Go 3.11.0 113 Tuesday, March 1, 2022 Approved
Task - Build System for Go 3.10.0 74 Wednesday, January 5, 2022 Approved
Task - Build System for Go 3.9.2 68 Friday, December 3, 2021 Approved
Task - Build System for Go 3.9.1 45 Monday, November 29, 2021 Approved
Task - Build System for Go 3.9.0 67 Sunday, October 3, 2021 Approved
Task - Build System for Go 3.8.0 75 Wednesday, September 29, 2021 Approved
Task - Build System for Go 3.7.3 68 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.7.0 64 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.6.0 65 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.5.0 65 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.4.3 71 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.2 62 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.1 72 Monday, September 27, 2021 Approved
Task - Build System for Go 3.3.0 72 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.2 87 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.1 63 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.0 55 Monday, September 27, 2021 Approved
Task - Build System for Go 3.1.0 57 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.1 61 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.0 70 Saturday, September 25, 2021 Approved
Task - Build System for Go 3.0.0-preiew4 46 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew3 64 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew2 70 Thursday, September 23, 2021 Approved
Task - Build System for Go 3.0.0-preiew1 36 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.1 87 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.0 62 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.7.1 70 Monday, September 20, 2021 Approved
Task - Build System for Go 2.7.0 59 Monday, September 20, 2021 Approved
Task - Build System for Go 2.6.0 79 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.2 47 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.1 48 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.0 70 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.4.0 62 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.3.0 60 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.2.1 42 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.2.0 71 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.1 59 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.0 41 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.3 41 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.2 39 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.1 54 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.0 38 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.4 37 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.3 34 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.2 24 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.1 29 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.0 41 Friday, September 17, 2021 Approved
Task - Build System for Go 1.3.0 54 Friday, September 17, 2021 Approved
Task - Build System for Go 1.2.0 32 Friday, September 17, 2021 Approved
Task - Build System for Go 1.1.0 38 Friday, September 17, 2021 Approved
Task - Build System for Go 1.0.0 32 Wednesday, September 15, 2021 Approved

Task now has an official extension for Visual Studio Code contributed by @pd93! :tada: The extension is maintained in a new repository under the go-task organization. We're looking to gather feedback from the community so please give it a go and let us know what you think via a discussion, issue or on our Discord!

> NOTE:

> The extension requires v3.23.0 to be installed in order to work.

  • The website was integrated with Crowdin to allow the community to contribute with translations! Chinese is the first language available (#1057, #1058 by @misitebao).

  • Added task location data to the --json flag output (#1056 by @pd93)

  • Change the name of the file generated by task --init from Taskfile.yaml to Taskfile.yml (#1062 by @misitebao).

  • Added new splitArgs template function ({{splitArgs "foo bar 'foo bar baz'"}}) to ensure string is split as arguments (#1040, #1059 by @dhanusaputra).

  • Fix the value of {{.CHECKSUM}} variable in status (#1076, #1080 by @pd93).

  • Fixed deep copy implementation (#1072 by @pd93)

  • Created a tool to assist with releases (#1086 by @pd93).


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