Skip to content
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

build: build failure on x_tools-go1.23-openbsd-riscv64 #68231

Open
gopherbot opened this issue Jun 28, 2024 · 2 comments
Open

build: build failure on x_tools-go1.23-openbsd-riscv64 #68231

gopherbot opened this issue Jun 28, 2024 · 2 comments
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.

Comments

@gopherbot
Copy link
Contributor

#!watchflakes
default <- builder == "x_tools-go1.23-openbsd-riscv64" && repo == "tools" && mode == "build"

Issue created automatically to collect these failures.

Example (log):

[I2024-06-25T07:03:33.039778+10:00 20708 0 sink.go:276] SinkServer: warm-up started
[I2024-06-25T07:03:33.040735+10:00 20708 0 sink.go:346] SinkServer: starting HTTP server...
[I2024-06-25T07:03:33.051422+10:00 20708 0 sink.go:281] SinkServer: warm-up ended
[I2024-06-25T07:03:33.053360+10:00 20708 0 cmd_stream.go:487] rdb-stream: starting the test command - ["/home/swarming/.swarming/w/ir/cache/tools/bin/result_adapter" "go" "-v=false" "-dump-json" "/home/swarming/.swarming/w/ir/x/w/go.testjson" "--" "/home/swarming/.swarming/w/ir/x/w/goroot/bin/go" "test" "-json" "-short" "-timeout=40m0s" "./..."]
[I2024-06-25T07:54:21.998856+10:00 20708 0 cmd_stream.go:483] rdb-stream: the test process terminated
[I2024-06-25T07:54:22.000778+10:00 20708 0 sink.go:371] SinkServer: shutdown started
[I2024-06-25T07:54:22.001410+10:00 20708 0 sink.go:349] SinkServer: HTTP server stopped with "http: Server closed"
[I2024-06-25T07:54:22.001840+10:00 20708 0 sink_server.go:96] SinkServer: draining TestResult channel started
[I2024-06-25T07:54:22.002219+10:00 20708 0 sink_server.go:98] SinkServer: draining TestResult channel ended
[I2024-06-25T07:54:22.002367+10:00 20708 0 sink_server.go:100] SinkServer: draining Artifact channel started
[I2024-06-25T07:54:22.003202+10:00 20708 0 sink_server.go:102] SinkServer: draining Artifact channel ended
[I2024-06-25T07:54:22.003672+10:00 20708 0 sink.go:374] SinkServer: shutdown completed successfully
[I2024-06-25T07:54:22.003974+10:00 20708 0 cmd_stream.go:415] rdb-stream: exiting with -1

watchflakes

@gopherbot gopherbot added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Jun 28, 2024
@gopherbot
Copy link
Contributor Author

Found new dashboard test flakes for:

#!watchflakes
default <- builder == "x_tools-go1.23-openbsd-riscv64" && repo == "tools" && mode == "build"
2024-06-24 18:53 x_tools-go1.23-openbsd-riscv64 tools@c9675c27 release-branch.go1.23@7dff7439 [build] (log)
[I2024-06-25T07:03:33.039778+10:00 20708 0 sink.go:276] SinkServer: warm-up started
[I2024-06-25T07:03:33.040735+10:00 20708 0 sink.go:346] SinkServer: starting HTTP server...
[I2024-06-25T07:03:33.051422+10:00 20708 0 sink.go:281] SinkServer: warm-up ended
[I2024-06-25T07:03:33.053360+10:00 20708 0 cmd_stream.go:487] rdb-stream: starting the test command - ["/home/swarming/.swarming/w/ir/cache/tools/bin/result_adapter" "go" "-v=false" "-dump-json" "/home/swarming/.swarming/w/ir/x/w/go.testjson" "--" "/home/swarming/.swarming/w/ir/x/w/goroot/bin/go" "test" "-json" "-short" "-timeout=40m0s" "./..."]
[I2024-06-25T07:54:21.998856+10:00 20708 0 cmd_stream.go:483] rdb-stream: the test process terminated
[I2024-06-25T07:54:22.000778+10:00 20708 0 sink.go:371] SinkServer: shutdown started
[I2024-06-25T07:54:22.001410+10:00 20708 0 sink.go:349] SinkServer: HTTP server stopped with "http: Server closed"
[I2024-06-25T07:54:22.001840+10:00 20708 0 sink_server.go:96] SinkServer: draining TestResult channel started
[I2024-06-25T07:54:22.002219+10:00 20708 0 sink_server.go:98] SinkServer: draining TestResult channel ended
[I2024-06-25T07:54:22.002367+10:00 20708 0 sink_server.go:100] SinkServer: draining Artifact channel started
[I2024-06-25T07:54:22.003202+10:00 20708 0 sink_server.go:102] SinkServer: draining Artifact channel ended
[I2024-06-25T07:54:22.003672+10:00 20708 0 sink.go:374] SinkServer: shutdown completed successfully
[I2024-06-25T07:54:22.003974+10:00 20708 0 cmd_stream.go:415] rdb-stream: exiting with -1

watchflakes

@cooler-SAI
Copy link

#!/bin/bash


# check resources
echo "Checking available memory and CPU"
free -h
nproc

# approve code test
echo "Running Go tests with increased timeout"
"/home/swarming/.swarming/w/ir/cache/tools/bin/result_adapter" "go" "-v=false" "-dump-json" "/home/swarming/.swarming/w/ir/x/w/go.testjson" "--" "/home/swarming/.swarming/w/ir/x/w/goroot/bin/go" "test" "-json" "-short" "-timeout=60m0s" "./..."


# Checking....
exit_code=$?
if [ $exit_code -ne 0 ]; then
  echo "Tests failed with exit code $exit_code"
else
  echo "Tests completed successfully"
fi

exit $exit_code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
Status: No status
Development

No branches or pull requests

2 participants