core: adjust txindexer cutoff for ancient pruning #3
Travis CI / Travis CI - Branch
succeeded
Oct 17, 2025 in 41m 33s
Build Passed
The build passed. This is a change from the previous build, which failed.
Details
This is a normal build for the indexer-v1.6.1-beta-txindexer branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has two jobs, running in two sequential stages.
Stage 1: lint
This stage passed.
| Job | Go | ENV | OS | State |
|---|---|---|---|---|
| 1.24.x | lint= | Linux | passed |
Stage 2: build
This stage passed.
| Job | Go | ENV | OS | State |
|---|---|---|---|---|
| 1.24.x | GO111MODULE=on | Linux | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Go |
| Operating System | Linux (Focal) |
Build Configuration
{
"language": "go",
"os": [
"linux"
],
"dist": "focal",
"go_import_path": "github.com/ethereum/go-ethereum",
"jobs": {
"allow_failures": [
{
"stage": "build",
"os": "osx",
"env": [
{
"azure-osx": ""
}
]
}
],
"include": [
{
"stage": "lint",
"os": "linux",
"arch": "amd64",
"dist": "noble",
"go": "1.24.x",
"env": [
{
"lint": ""
}
],
"git": {
"submodules": false
},
"script": [
"go run build/ci.go lint"
]
},
{
"stage": "build",
"os": "linux",
"arch": "amd64",
"dist": "noble",
"go": "1.24.x",
"env": [
{
"GO111MODULE": "on"
}
],
"git": {
"submodules": false
},
"script": [
"travis_wait 120 go run build/ci.go test $TEST_PACKAGES -timeout 120m",
"cd tests && bash -x run-evm-tests.sh"
]
},
{
"stage": "Docker Image Release",
"script": [
"echo \"$DOCKER_PASSWORD\" | docker login -u \"$DOCKER_USERNAME\" --password-stdin quay.io/amis",
"make docker",
"make docker.push"
],
"if": "tag =~ ^v([0-9]+.)+[0-9]+",
"env": [
{
"DOCKER_IMAGE_TAG": "\"$TRAVIS_TAG\""
}
]
}
]
}
}
Loading