Upgrade to Go 1.23. Upgrade also requires bumping `golangci-lint` to v1.62.2, and upgrading third-party test versions for some failing cases.
25 lines
836 B
Bash
Executable File
25 lines
836 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
# Standalone version of the assembly checks in go vet.
|
|
go install ./internal/cmd/asmvet
|
|
|
|
# golangci-lint for linting
|
|
golangci_lint_version='v1.62.2'
|
|
golangci_install_script="https://raw.githubusercontent.com/golangci/golangci-lint/${golangci_lint_version}/install.sh"
|
|
curl -sfL "${golangci_install_script}" | sh -s -- -b "$(go env GOPATH)/bin" "${golangci_lint_version}"
|
|
|
|
# embedmd required for documentation generation
|
|
go install github.com/campoy/embedmd@v1.0.0
|
|
|
|
# asmfmt for enforcing assembly style
|
|
go install github.com/klauspost/asmfmt/cmd/asmfmt@v1.3.2
|
|
|
|
# goimports for import grouping.
|
|
go install golang.org/x/tools/cmd/goimports@v0.6.0
|
|
|
|
# gofumpt for stricter formatting.
|
|
go install mvdan.cc/gofumpt@v0.4.0
|
|
|
|
# yamlfmt for yaml formatting.
|
|
go install github.com/gechr/yamlfmt@v0.0.0-20221202235948-8c26683ac3e8
|