Bump io.lettuce:lettuce-core from 6.3.2.RELEASE to 7.0.0.RELEASE in /ecr - #568
Open
dependabot[bot] wants to merge 1 commit into
Open
Bump io.lettuce:lettuce-core from 6.3.2.RELEASE to 7.0.0.RELEASE in /ecr#568dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Travis CI / Travis CI - Branch
failed
Oct 23, 2025 in 5m 25s
Build Failed
The build failed.
Details
This is a normal build for the dependabot/maven/ecr/io.lettuce-lettuce-core-7.0.0.RELEASE 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: npm-test
This stage passed.
| Job | Python | OS | State |
|---|---|---|---|
| 3.8 | Linux | passed |
Stage 2: mvn-test
This stage failed.
| Job | JDK | OS | State |
|---|---|---|---|
| openjdk17 | Linux | failed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Python |
| Operating System | Linux (Jammy) |
| Python Version | 3.8 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "jammy",
"python": [
"3.8"
],
"services": [
"docker"
],
"cache": {
"directories": [
"$HOME/.cache/yarn",
"node_modules",
".next/cache"
]
},
"before_install": [
"mkdir -vp ~/.docker/cli-plugins/",
"curl --silent -L \"https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-amd64\" > ~/.docker/cli-plugins/docker-buildx",
"chmod a+x ~/.docker/cli-plugins/docker-buildx",
"docker buildx version",
"GIT_TAG=$(git tag -l --contains HEAD 2>&1)",
"export TAG=${GIT_TAG:-$TRAVIS_COMMIT}"
],
"install": [
"cd $TRAVIS_BUILD_DIR",
"./bin/install_ci_dependencies.sh"
],
"jobs": {
"include": [
{
"stage": "npm-test",
"script": [
"cd $TRAVIS_BUILD_DIR/vsm-app",
"npm install",
"export FHIR_CDR_URL=https://placeholder.com/fhir",
"export NEXT_PUBLIC_VSAC_BASE_URL=https://cts.nlm.nih.gov/fhir",
"npm run build",
"npm ci && npm run test-ci"
],
"install": [
"skip"
]
},
{
"stage": "mvn-test",
"jdk": "openjdk17",
"language": "java",
"script": [
"./bin/test_plugin.sh"
],
"install": [
"skip"
]
},
{
"stage": "build-and-deploy-plugin",
"if": "branch IN (main) or tag IS present",
"jdk": "openjdk17",
"language": "java",
"script": [
"./bin/build_plugin.sh"
]
},
{
"stage": "e2e-test",
"if": "branch IN (main) or tag IS present",
"script": [
"cd ./pw-e2e",
"npm install",
"npx playwright install chromium --with-deps",
"npx playwright test"
]
},
{
"stage": "deploy",
"if": "branch IN (main) or tag IS present",
"script": [
"cd $TRAVIS_BUILD_DIR/vsm-app",
"docker build -t ${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/vsm-app:${TAG} -t ${PROD_AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/ecr-sandbox-app:${TAG}-vsm .",
"cd ../",
"./bin/deploy.sh"
]
}
]
}
}
Loading