Using teamcity to test dgraph
Refer to the official test
What I Did
- After installing teamcity and testing other projects, there is no problem.
- Test dgraph
These are my test steps,
script {
name = "Make Linux Build"
scriptContent = "make GOOS=linux dgraph"
}
script {
name = "Check protobuf"
scriptContent = """
cd ./protos
go mod tidy
make regenerate
git diff --exit-code -- .
""".trimIndent()
}
script {
name = "Run unit tests"
scriptContent = """
#!/bin/bash
if [ -f go.mod ]; then
export GO111MODULE=on
fi
# Run the Go test script. Or, run test.sh if the Go test script doesn't exist.
if [ -d ./t ]; then
cd t; go build .
./t -r
./t
else
echo "./t directory does not exist!"
exit 1
fi
""".trimIndent()
}
My problems
Teamcity always fails to execute ./t, here is the log
11:52:23
Found valid task: github.com/dgraph-io/dgraph/xidmap isCommon:true
11:52:23
Running tests for 109 packages.
11:52:23
Sent 1/109 packages for processing.
11:52:23
Sent 2/109 packages for processing.
11:52:23
Sent 3/109 packages for processing.
11:52:23
Bringing up cluster test-tc-056-2...
11:52:23
Bringing up cluster test-tc-056-1...
11:52:23
Bringing up cluster for package: github.com/dgraph-io/dgraph/dgraph/cmd/alpha/mutations_mode
11:52:23
Bringing up cluster test-tc-056-4...
11:53:00
2021/01/14 11:53:00 While running command: "docker-compose -f ../dgraph/docker-compose.yml -p test-tc-056-2 up --force-recreate --remove-orphans --detach" Error: exit status 1
11:53:00
Process exited with code 1
11:53:01
Process exited with code 1 (Step: Run unit tests (Command Line))
11:53:00
Step Run unit tests (Command Line) failed
But I always succeed when I execute
docker-compose -f ../dgraph/docker-compose.yml -p test-tc-056-2 up --force-recreate --remove-orphans --detach
in the working directory of teamcity on the server.
My teamcity environment
ubuntu 18.04
go version go1.15.2 linux/amd64
Dgraph Metadata
dgraph version
20.11.0