From bd637acbac3a459f6ef5898ffba0396ce1d5c28f Mon Sep 17 00:00:00 2001 From: ssabrii <45571047+ssabrii@users.noreply.github.com> Date: Wed, 30 Jan 2019 10:01:15 -0500 Subject: [PATCH 1/5] Update go.md with `master` vs `stable` info --- user/languages/go.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/user/languages/go.md b/user/languages/go.md index c04491e97b1..455f7c0f2fd 100644 --- a/user/languages/go.md +++ b/user/languages/go.md @@ -45,6 +45,9 @@ or patch level to use the latest for a given major or minor version, or use `master` to get the latest version from source. All go version management is handled by [gimme](https://github.com/travis-ci/gimme). +*Please note*: When using `master`, this performs a git checkout installation because +it uses the latest development version from the master branch. As such, the installation can take a while. +If you’d like to use the latest stable release you can use `stable` as well, and the installation takes less time. ```yaml language: go From 43be1d51b8f9385ca7966774600a9339edd2697f Mon Sep 17 00:00:00 2001 From: ssabrii <45571047+ssabrii@users.noreply.github.com> Date: Wed, 30 Jan 2019 10:16:25 -0500 Subject: [PATCH 2/5] Update go.md --- user/languages/go.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/user/languages/go.md b/user/languages/go.md index 455f7c0f2fd..d8ef4099d39 100644 --- a/user/languages/go.md +++ b/user/languages/go.md @@ -42,8 +42,8 @@ new to Travis CI please read our [Tutorial](/user/tutorial/) and You can use any tagged version of Go, a version with `x` in place of the minor or patch level to use the latest for a given major or minor version, or use -`master` to get the latest version from source. All go version management is -handled by [gimme](https://github.com/travis-ci/gimme). +`master` to get the latest version from source. To use the latest stable release +use `stable`. All go version management is handled by [gimme](https://github.com/travis-ci/gimme). *Please note*: When using `master`, this performs a git checkout installation because it uses the latest development version from the master branch. As such, the installation can take a while. @@ -57,6 +57,7 @@ go: - "1.8" - "1.10.x" - master + - stable ``` {: data-file=".travis.yml"} From d4eded60116241ea58591564e586c56fe6282a14 Mon Sep 17 00:00:00 2001 From: Dominic Jodoin Date: Wed, 30 Jan 2019 10:24:35 -0500 Subject: [PATCH 3/5] Update user/languages/go.md Co-Authored-By: ssabrii <45571047+ssabrii@users.noreply.github.com> --- user/languages/go.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/languages/go.md b/user/languages/go.md index d8ef4099d39..6df6758d37b 100644 --- a/user/languages/go.md +++ b/user/languages/go.md @@ -46,7 +46,7 @@ or patch level to use the latest for a given major or minor version, or use use `stable`. All go version management is handled by [gimme](https://github.com/travis-ci/gimme). *Please note*: When using `master`, this performs a git checkout installation because -it uses the latest development version from the master branch. As such, the installation can take a while. +it uses the latest development version from the master branch of [Go's repository](https://github.com/golang/go). As such, the installation can take a while. If you’d like to use the latest stable release you can use `stable` as well, and the installation takes less time. ```yaml From 54573a796f042caf4b4f4e550d52f932ba9d714f Mon Sep 17 00:00:00 2001 From: Dominic Jodoin Date: Wed, 30 Jan 2019 10:24:47 -0500 Subject: [PATCH 4/5] Update user/languages/go.md Co-Authored-By: ssabrii <45571047+ssabrii@users.noreply.github.com> --- user/languages/go.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/languages/go.md b/user/languages/go.md index 6df6758d37b..dd41d61b038 100644 --- a/user/languages/go.md +++ b/user/languages/go.md @@ -42,7 +42,7 @@ new to Travis CI please read our [Tutorial](/user/tutorial/) and You can use any tagged version of Go, a version with `x` in place of the minor or patch level to use the latest for a given major or minor version, or use -`master` to get the latest version from source. To use the latest stable release +`master` to get the latest version from source. To use the latest stable release, use `stable`. All go version management is handled by [gimme](https://github.com/travis-ci/gimme). *Please note*: When using `master`, this performs a git checkout installation because From 4ee314e0ef21219adc734b2bbb9d584f1644ce2e Mon Sep 17 00:00:00 2001 From: ssabrii <45571047+ssabrii@users.noreply.github.com> Date: Tue, 12 Nov 2019 10:18:06 -0500 Subject: [PATCH 5/5] Add suggested changes --- user/languages/go.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/user/languages/go.md b/user/languages/go.md index dd41d61b038..45317980ca4 100644 --- a/user/languages/go.md +++ b/user/languages/go.md @@ -41,12 +41,12 @@ new to Travis CI please read our [Tutorial](/user/tutorial/) and ## Specifying a Go version to use You can use any tagged version of Go, a version with `x` in place of the minor -or patch level to use the latest for a given major or minor version, or use -`master` to get the latest version from source. To use the latest stable release, -use `stable`. All go version management is handled by [gimme](https://github.com/travis-ci/gimme). +or patch level to use the latest for a given major or minor version, `stable` for the latest stable release, or `master` to get the latest version from source. + +All go version management is handled by [gimme](https://github.com/travis-ci/gimme). + +> When using `master` to get the latest development version from the [Go repository master branch](https://github.com/golang/go) the installation will take longer than the latest `stable` release. -*Please note*: When using `master`, this performs a git checkout installation because -it uses the latest development version from the master branch of [Go's repository](https://github.com/golang/go). As such, the installation can take a while. If you’d like to use the latest stable release you can use `stable` as well, and the installation takes less time. ```yaml