You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev-docs/development-process.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ We use `yarn` to run most development commands, so [install that as well](https:
18
18
### Go
19
19
20
20
<!-- the next line is automatically edited; do not change -->
21
-
Go version go1.17.7 is required for some development tasks, in particular to run `yarn generate`.
21
+
Go version go1.17.8 is required for some development tasks, in particular to run `yarn generate`.
22
22
For new contributors not familiar with Go, it's probably safe to skip installing Go for now -- you will see a helpful error if and when it is needed.
23
23
We recommend using https://github.com/moovweb/gvm to support installing multiple Go versions.
GW_TESTS_RUN_AS_CURRENT_USER=true GORACE=history_size=7 CGO_ENABLED=1 go test -tags "${ENGINE}" -timeout 45m -ldflags "-X github.com/taskcluster/taskcluster/v44/workers/generic-worker.revision=${GITHUB_SHA}" -v ${RACE} ${VET}
232
232
fi
233
233
GORACE=history_size=7 CGO_ENABLED=${CGO_ENABLED_TESTS} go test -tags "${ENGINE}" -timeout 45m -ldflags "-X github.com/taskcluster/taskcluster/v44/workers/generic-worker.revision=${GITHUB_SHA}" -v ${RACE} ${VET} ./...
234
-
../../../golangci-lint/golangci-lint-1.39.0-*/golangci-lint run --build-tags "${ENGINE}" --timeout=15m
234
+
../../../golangci-lint/golangci-lint-1.44.2-*/golangci-lint run --build-tags "${ENGINE}" --timeout=15m
235
235
Windows:
236
236
- |
237
237
:: go test: -race and -msan are only supported on linux/amd64, freebsd/amd64, darwin/amd64 and windows/amd64
@@ -251,8 +251,8 @@ Commands:
251
251
252
252
# The next two lines are edited by infrastructure/tooling/src/generate/generators/go-version.js
253
253
# DO NOT CHANGE HERE!
254
-
- set GOROOT=%CD%\go1.17.7\go
255
-
- set GOPATH=%CD%\gopath1.17.7
254
+
- set GOROOT=%CD%\go1.17.8\go
255
+
- set GOPATH=%CD%\gopath1.17.8
256
256
257
257
- |
258
258
:: temporarily add C:\cygwin\bin to PATH - if this works out well, we should probably do it in system setup instead (i.e. in default system PATH of the image set)
@@ -303,10 +303,10 @@ Commands:
303
303
:: assumption here is that if something inside the if fails, we'll get a non zero exit code
304
304
:: i've also made it an if/else so that one of them has to run, as there should always be a
305
305
:: linter
306
-
if exist ..\..\..\golangci-lint\golangci-lint-1.39.0-windows-amd64 (
307
-
..\..\..\golangci-lint\golangci-lint-1.39.0-windows-amd64\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
306
+
if exist ..\..\..\golangci-lint\golangci-lint-1.44.2-windows-amd64 (
307
+
..\..\..\golangci-lint\golangci-lint-1.44.2-windows-amd64\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
308
308
) else (
309
-
..\..\..\golangci-lint\golangci-lint-1.39.0-windows-386\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
309
+
..\..\..\golangci-lint\golangci-lint-1.44.2-windows-386\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
0 commit comments