bump gotestsum versions
parent
8d419b4bc6
commit
d22be78fbe
|
@ -68,7 +68,7 @@ if ($CurrentGo -NotLike "*$GoVersion*") {
|
|||
|
||||
# Download gopogh and gotestsum
|
||||
(New-Object Net.WebClient).DownloadFile("https://github.com/medyagh/gopogh/releases/download/v0.13.0/gopogh.exe", "C:\Go\bin\gopogh.exe")
|
||||
(New-Object Net.WebClient).DownloadFile("https://github.com/gotestyourself/gotestsum/releases/download/v1.8.2/gotestsum_1.8.2_windows_amd64.tar.gz", "$env:TEMP\gotestsum.tar.gz")
|
||||
(New-Object Net.WebClient).DownloadFile("https://github.com/gotestyourself/gotestsum/releases/download/v1.9.0/gotestsum_1.9.0_windows_amd64.tar.gz", "$env:TEMP\gotestsum.tar.gz")
|
||||
tar --directory "C:\Go\bin\" -xzvf "$env:TEMP\gotestsum.tar.gz" "gotestsum.exe"
|
||||
|
||||
# Grab all the scripts we'll need for integration tests
|
||||
|
|
|
@ -18,7 +18,7 @@ set -eux -o pipefail
|
|||
|
||||
function install_gotestsum() {
|
||||
rm -f $(which gotestsum)
|
||||
GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.8.2
|
||||
GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.9.0
|
||||
}
|
||||
|
||||
which gotestsum || install_gotestsum
|
||||
|
|
Loading…
Reference in New Issue