-
Notifications
You must be signed in to change notification settings - Fork 919
GODRIVER-3573: Remove old duplicate compilation test #2257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
669e669
d0d0045
ce0bb58
dc99892
f523a71
aae2e31
53192c1
d9739fd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -17,10 +17,19 @@ tasks: | |||
| - go build ./... | ||||
| - go build ${BUILD_TAGS} ./... | ||||
| - task: build-tests | ||||
| - task: build-compile-check | ||||
| - task: compilecheck-119 | ||||
| - task: cross-compile | ||||
| build-tests: go test -short ${BUILD_TAGS} -run ^$$ ./... | ||||
| build-compile-check: bash etc/compile_check.sh | ||||
| compilecheck-119: | ||||
| dir: internal/test/compilecheck | ||||
| env: | ||||
| GOWORK: off | ||||
| GOTOOLCHAIN: auto | ||||
| GO_VERSIONS: "1.19" | ||||
| COMPILECHECK_USE_DOCKER: "0" | ||||
|
||||
| COMPILECHECK_USE_DOCKER: "0" |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The compile check test should be run with
GOWORK=offto match the configuration in the Taskfile (line 26) and the bash script atetc/run-compile-check-test.sh(line 18). Without this, the test may use workspace settings which could affect the compilation test behavior.