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:

25,495

Downloads of v 3.40.0:

180

Last Update:

10 Dec 2024

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.40.0 | Updated: 10 Dec 2024

Downloads:

25,495

Downloads of v 3.40.0:

180

Maintainer(s):

Software Author(s):

  • Andrey Nering

Task - Build System for Go 3.40.0

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

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

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


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

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


package { 'go-task':
  ensure   => '3.40.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 10 Dec 2024.

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.40.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.40.0, and download from there.

   i686:   https://github.com/go-task/task/releases/download/v3.40.0/task_windows_386.zip
   x86_64: https://github.com/go-task/task/releases/download/v3.40.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:   0debbd29a8d0976aec5f4cf9138f00eafe64ab1398594cb7d747d871601a3fe444680ddc200aad5cbf44c0800bbcc147fb482214e7412d428119a5e3a62344c0
   checksum64: 90c5f2faee4ae4a933d131675aba2347ecb922aa41b3b286b087a5c90668178db96958e3db1b790c8f325959f8a18a5bffb791c25b61a02c6a1e96cb1efa31a1

File 'LICENSE.txt' obtained from:
   https://github.com/go-task/task/blob/v3.40.0/LICENSE
tools\x64\task.exe
md5: 88EDA302DF8219E0FFA83959F96E5944 | sha1: E2ADDE24CD8B6ABA33586FE2328A8FA2AE08C979 | sha256: B012FC6AFFE0A2C1565FDEB97CC6C105D0A4A062B81B75AB7FD1B38AF175E24C | sha512: 90C5F2FAEE4AE4A933D131675ABA2347ECB922AA41B3B286B087A5C90668178DB96958E3DB1B790C8F325959F8A18A5BFFB791C25B61A02C6A1E96CB1EFA31A1
tools\x86\task.exe
md5: 2E009AE254AE41EA57C46C71D3F6B6A7 | sha1: B4ABF97A88546A128589A7B6DADED464671542B8 | sha256: CAC4A1198D4FF42AA7F6705544661443613E3B0D0A9BA1644A4B9DDE7E2F498B | sha512: 0DEBBD29A8D0976AEC5F4CF9138F00EAFE64AB1398594CB7D747D871601A3FE444680DDC200AAD5CBF44C0800BBCC147FB482214E7412D428119A5E3A62344C0

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.40.0 180 Tuesday, December 10, 2024 Approved
Task - Build System for Go 3.39.2 413 Tuesday, November 26, 2024 Approved
Task - Build System for Go 3.39.1 674 Thursday, November 14, 2024 Approved
Task - Build System for Go 3.39.0 1861 Saturday, September 21, 2024 Approved
Task - Build System for Go 3.38.0 43 Friday, September 20, 2024 Approved
Task - Build System for Go 3.37.2 1278 Wednesday, September 4, 2024 Approved
Task - Build System for Go 3.37.1 1764 Wednesday, July 3, 2024 Approved
Task - Build System for Go 3.37.0 751 Saturday, June 8, 2024 Approved
Task - Build System for Go 3.36.0 1021 Wednesday, April 24, 2024 Approved
Task - Build System for Go 3.35.1 257 Monday, April 22, 2024 Approved
Task - Build System for Go 3.34.1 1424 Thursday, February 15, 2024 Approved
Task - Build System for Go 3.34.0 178 Thursday, February 8, 2024 Approved
Task - Build System for Go 3.33.1 104 Monday, February 5, 2024 Approved
Task - Build System for Go 3.33.0 892 Tuesday, January 2, 2024 Approved
Task - Build System for Go 3.32.0 252 Sunday, December 17, 2023 Approved
Task - Build System for Go 3.31.0 844 Monday, October 23, 2023 Approved
Task - Build System for Go 3.30.1 213 Wednesday, October 11, 2023 Approved
Task - Build System for Go 3.30.0 175 Friday, September 22, 2023 Approved
Task - Build System for Go 3.29.1 802 Monday, September 18, 2023 Approved
Task - Build System for Go 3.28.0 237 Saturday, September 2, 2023 Approved
Task - Build System for Go 3.27.1 326 Saturday, August 5, 2023 Approved
Task - Build System for Go 3.27.0 65 Friday, August 4, 2023 Approved
Task - Build System for Go 3.26.0 138 Wednesday, August 2, 2023 Approved
Task - Build System for Go 3.25.0 400 Sunday, June 25, 2023 Approved
Task - Build System for Go 3.24.0 666 Wednesday, May 24, 2023 Approved
Task - Build System for Go 3.23.0 569 Monday, March 27, 2023 Approved
Task - Build System for Go 3.22.0 645 Saturday, March 11, 2023 Approved
Task - Build System for Go 3.21.0 275 Wednesday, March 8, 2023 Approved
Task - Build System for Go 3.20.0 131 Tuesday, March 7, 2023 Approved
Task - Build System for Go 3.19.1 492 Sunday, January 15, 2023 Approved
Task - Build System for Go 3.19.0 270 Tuesday, December 13, 2022 Approved
Task - Build System for Go 3.18.0 304 Sunday, November 13, 2022 Approved
Task - Build System for Go 3.17.0 347 Wednesday, October 19, 2022 Approved
Task - Build System for Go 3.16.0 125 Saturday, October 15, 2022 Approved
Task - Build System for Go 3.15.2 164 Saturday, October 8, 2022 Approved
Task - Build System for Go 3.15.0 223 Sunday, September 11, 2022 Approved
Task - Build System for Go 3.14.1 249 Thursday, August 4, 2022 Approved
Task - Build System for Go 3.14.0 180 Saturday, July 9, 2022 Approved
Task - Build System for Go 3.13.0 163 Sunday, June 19, 2022 Approved
Task - Build System for Go 3.12.1 240 Tuesday, May 10, 2022 Approved
Task - Build System for Go 3.12.0 480 Saturday, April 2, 2022 Approved
Task - Build System for Go 3.11.0 168 Tuesday, March 1, 2022 Approved
Task - Build System for Go 3.10.0 115 Wednesday, January 5, 2022 Approved
Task - Build System for Go 3.9.2 123 Friday, December 3, 2021 Approved
Task - Build System for Go 3.9.1 76 Monday, November 29, 2021 Approved
Task - Build System for Go 3.9.0 108 Sunday, October 3, 2021 Approved
Task - Build System for Go 3.8.0 107 Wednesday, September 29, 2021 Approved
Task - Build System for Go 3.7.3 103 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.7.0 287 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.6.0 97 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.5.0 95 Tuesday, September 28, 2021 Approved
Task - Build System for Go 3.4.3 111 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.2 103 Monday, September 27, 2021 Approved
Task - Build System for Go 3.4.1 140 Monday, September 27, 2021 Approved
Task - Build System for Go 3.3.0 160 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.2 124 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.1 100 Monday, September 27, 2021 Approved
Task - Build System for Go 3.2.0 93 Monday, September 27, 2021 Approved
Task - Build System for Go 3.1.0 90 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.1 102 Monday, September 27, 2021 Approved
Task - Build System for Go 3.0.0 124 Saturday, September 25, 2021 Approved
Task - Build System for Go 3.0.0-preiew4 77 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew3 103 Friday, September 24, 2021 Approved
Task - Build System for Go 3.0.0-preiew2 103 Thursday, September 23, 2021 Approved
Task - Build System for Go 3.0.0-preiew1 91 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.1 136 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.8.0 112 Thursday, September 23, 2021 Approved
Task - Build System for Go 2.7.1 111 Monday, September 20, 2021 Approved
Task - Build System for Go 2.7.0 106 Monday, September 20, 2021 Approved
Task - Build System for Go 2.6.0 126 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.2 86 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.1 94 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.5.0 119 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.4.0 109 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.3.0 109 Sunday, September 19, 2021 Approved
Task - Build System for Go 2.2.1 77 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.2.0 103 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.1 87 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.1.0 82 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.3 74 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.2 76 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.1 95 Saturday, September 18, 2021 Approved
Task - Build System for Go 2.0.0 77 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.4 93 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.3 73 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.2 59 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.1 73 Saturday, September 18, 2021 Approved
Task - Build System for Go 1.4.0 76 Friday, September 17, 2021 Approved
Task - Build System for Go 1.3.0 102 Friday, September 17, 2021 Approved
Task - Build System for Go 1.2.0 77 Friday, September 17, 2021 Approved
Task - Build System for Go 1.1.0 76 Friday, September 17, 2021 Approved
Task - Build System for Go 1.0.0 75 Wednesday, September 15, 2021 Approved

If you like this project, consider spreading the word or sponsoring the project.

  • Fixed output of some functions (e.g. splitArgs/splitLines) not working in for loops (#1822, #1823 by @stawii).

  • Added a new TASK_OFFLINE environment variable to configure the --offline flag and expose it as a special variable in the templating system (#1470, #1716 by @vmaerten and @pd93).

  • Fixed a bug where multiple remote includes caused all prompts to display without waiting for user input (#1832, #1833 by @vmaerten and @pd93).

  • When using the "Remote Taskfiles" experiment, you can now include Taskfiles from Git repositories (#1652 by @vmaerten).

  • Improved the error message when a dotenv file cannot be parsed (#1842 by @pbitty).

  • Fix issue with directory when using the remote experiment (#1757 by @pbitty).

  • Fixed an issue where a special variable was used in combination with a dotenv file (#1232, #1810 by @vmaerten).

  • Refactor the way Task reads Taskfiles to improve readability (#1771 by @pbitty).

  • Added a new option to ensure variable is within the list of values (#1827 by @vmaerten).

  • Allow multiple prompts to be specified for a task (#1861, #1866 by @mfbmina).

  • Added new template function: numCPU, which returns the number of logical CPUs usable (#1890, #1887 by @Amoghrd).

  • Fixed a bug where non-nil, empty dynamic variables are returned as an empty interface (#1903, #1904 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