Bump proto and util #64
Merged
Travis CI / Travis CI - Branch
succeeded
Apr 9, 2024 in 11m 31s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the bump-deps branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has two jobs, running in parallel.
Job | Go | ENV | OS | State |
---|---|---|---|---|
289.1 Coverage | 1.20.x | Linux | passed | |
289.2 Docker and Integration Tests | 1.20.x | TAG=`if [ $TRAVIS_BRANCH == "master" ]; then echo -n latest; else echo -n $TRAVIS_BRANCH; fi` | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Go |
Operating System | Linux (Xenial) |
Go Version | 1.20.x |
Build Configuration
{
"language": "go",
"os": [
"linux"
],
"dist": "xenial",
"go": [
"1.20.x"
],
"addons": {
"apt": {
"update": true,
"packages": [
"ruby"
]
}
},
"jobs": {
"include": [
{
"name": "Coverage",
"os": "linux",
"dist": "jammy",
"install": [
"sudo gem install coveralls-lcov",
"go install github.com/jandelgado/gcov2lcov@latest",
"curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2",
"go get ./..."
],
"script": [
"go build -ldflags=\"-X main.Commit=$(git rev-parse HEAD)\" cmd/koinos-jsonrpc/main.go",
"golangci-lint run ./..."
],
"after_success": [
"coveralls-lcov --repo-token \"$COVERALLS_REPO_TOKEN\" --service-name travis-pro coverage.info"
]
},
{
"name": "Docker and Integration Tests",
"os": "linux",
"dist": "jammy",
"services": [
"docker"
],
"env": [
{
"TAG": "`if [ $TRAVIS_BRANCH == \"master\" ]; then echo -n latest; else echo -n $TRAVIS_BRANCH; fi`"
},
{
"JSONRPC_TAG": "$TAG"
}
],
"before_install": [
"sudo systemctl stop docker.service && sudo systemctl stop docker.socket",
"sudo apt-get install ca-certificates curl",
"sudo install -m 0755 -d /etc/apt/keyrings",
"sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc",
"sudo chmod a+r /etc/apt/keyrings/docker.asc",
"echo \\\n \"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \\\n $(. /etc/os-release && echo \"$VERSION_CODENAME\") stable\" | \\\n sudo tee /etc/apt/sources.list.d/docker.list > /dev/null\n",
"sudo apt-get update"
],
"install": [
"sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin",
"git clone https://github.com/koinos/koinos-integration-tests.git",
"pushd koinos-integration-tests",
"go get ./...",
"popd"
],
"before_script": [
"echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin",
"docker build . -t $TRAVIS_REPO_SLUG:$TAG"
],
"script": [
"pushd koinos-integration-tests",
"./run.sh"
],
"after_success": [
"if [ \"$TRAVIS_PULL_REQUEST\" = \"false\" ]; then\n docker push $TRAVIS_REPO_SLUG:$TAG\nfi\n"
]
}
]
},
"notifications": {
"slack": [
{
"rooms": [
{
"secure": "Ta4MaLdlfFlOwXLnQIBJ5bxPayXw6uAoLaoQGYJNEWwdWzDHZqLjI+cQiOYcWKfqP5ARDUD1xt4YpufK2FkJZq7FQlmNeM8dtOBUvn8KUAKPBqqEXJmvpxQHEaxdlZqaYrT+7YrQ7xemVmdOVIy4KYDSxcttzT2w3YRNBzlpzhv8Po+2R7yD6jQtDVw7xm494Z95eQohck69JqLLQUusK9WoRX1M74ZmaDrrru+M5VHU9X5tEKk5nouqllruXxCE0Q2c/sDniEVDCGDyvNQx9MP+G+/xcdedA14SeqJI03ETU2kGSaQJOt0PUxvBPPlpBUW0Bp/FxT96cyk7V58HBcsfu85C87I4//KiwnRXO7p5VRHmqlLR/BdhKBjs+naVb5AaiYnnh20J4QVxmcEU9DKw4PdXWq324McsmwXhFZa6AjSq/53v7u+yTlFtydfOf9UbwysFN1qGDrFWJ14yEJyhstJBlqh/Dvh8rCP7c04PWAdzGStpHzf7ffC1TtAyuR1T0whybR3PGTQVSwLNOtXqn8LV5txwayOiqYeeBHqBe1aZ6bv/AbX+he1Q9uBOSNQQeJmPwm3+EukVIQW4qY/Rs0wxM7fAfk1cT7EDZrTXVDX9FNhbM7QCfsxseaXeyhSLVsoktKxDNdcRJ2CaeRYQQCKHMjCyh3VwtFmt3vs="
}
],
"on_success": "never"
}
]
}
}
Loading