Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1226,8 +1226,11 @@ deploy_to_di_backend:manual:
# If the deploy_to_maven_central job is re-run, re-trigger the deploy_artifacts_to_github job as well so that the artifacts match.
deploy_to_maven_central:
extends: .gradle_build
stage: publish
needs: [ build ]
stage: shared-pipeline
needs:
- build
- job: system_tests
optional: true
variables:
CACHE_TYPE: "lib"
rules:
Expand Down Expand Up @@ -1278,7 +1281,7 @@ deploy_snapshot_with_ddprof_snapshot:
- 'workspace/dd-trace-ot/build/libs/*.jar'

deploy_artifacts_to_github:
stage: publish
stage: shared-pipeline
image: registry.ddbuild.io/images/dd-octo-sts-ci-base:2025.06-1
tags: [ "arch:amd64" ]
id_tokens:
Expand Down Expand Up @@ -1345,7 +1348,7 @@ override_verify_maven_central:
# Verify Maven Central deployment is publicly available before publishing OCI images
verify_maven_central_deployment:
image: registry.ddbuild.io/images/base/gbi-ubuntu_2204:release
stage: publish
stage: shared-pipeline
needs: [ deploy_to_maven_central ]
rules:
- if: '$POPULATE_CACHE'
Expand Down Expand Up @@ -1397,7 +1400,7 @@ verify_maven_central_deployment:
done
publishing-gate:
stage: publish
stage: shared-pipeline
needs:
- job: verify_maven_central_deployment
optional: true # Required for releases only
Expand Down
Loading