We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86f428a commit 6835f31Copy full SHA for 6835f31
internal/kokoro/continuous.sh
@@ -97,11 +97,13 @@ try3 go mod download
97
# runDirectoryTests runs all tests in the current directory.
98
# If a PATH argument is specified, it runs `go test [PATH]`.
99
runDirectoryTests() {
100
+ if [[ $PWD == *"/aliasshim" ]]; then
101
+ # aliasshim: build constraints exclude all Go files
102
+ return
103
+ fi
104
if { [[ $PWD == *"/internal/"* ]] ||
- [[ $PWD == *"/third_party/"* ]] ||
- [[ $PWD == *"/aliasshim" ]]; } &&
105
+ [[ $PWD == *"/third_party/"* ]]; } &&
106
[[ $KOKORO_JOB_NAME == *"earliest"* ]]; then
- # aliasshim: build constraints exclude all Go files
107
# internal tools only expected to work with latest go version
108
return
109
fi
0 commit comments