Skip to content

Remove "tracer image snapshot" jobs #8965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2025
Merged
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
37 changes: 0 additions & 37 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
include:
- project: DataDog/apm-reliability/libdatadog-build
ref: 0f677257308e1c379af490b754febfb40fa2c06d
file: templates/ci_authenticated_job.yml
- local: ".gitlab/one-pipeline.locked.yml"
- local: ".gitlab/benchmarks.yml"
- local: ".gitlab/macrobenchmarks.yml"
Expand Down Expand Up @@ -786,37 +783,3 @@ create_key:
expire_in: 13 mos
paths:
- pubkeys

tracer-base-image-release:
extends: .ci_authenticated_job
stage: publish
needs: [ build ]
rules:
- if: '$POPULATE_CACHE'
when: never
- if: '$CI_COMMIT_TAG =~ /^v1\..*/'
when: on_success
dependencies:
- build
script:
- echo $GH_TOKEN|docker login ghcr.io/datadog -u uploader --password-stdin
- mkdir -p ./tooling/ci/binaries/ && cp workspace/dd-java-agent/build/libs/*.jar ./tooling/ci/binaries/dd-java-agent.jar
- docker buildx build -t ghcr.io/datadog/dd-trace-java/dd-trace-java:latest -f ./tooling/ci/Dockerfile .
- docker push ghcr.io/datadog/dd-trace-java/dd-trace-java:latest

tracer-base-image-snapshot:
extends: .ci_authenticated_job
stage: publish
needs: [ build ]
rules:
- if: '$POPULATE_CACHE'
when: never
- if: '$CI_COMMIT_BRANCH == "master"'
when: on_success
dependencies:
- build
script:
- echo $GH_TOKEN|docker login ghcr.io/datadog -u uploader --password-stdin
- mkdir -p ./tooling/ci/binaries/ && cp workspace/dd-java-agent/build/libs/*.jar ./tooling/ci/binaries/dd-java-agent.jar
- docker buildx build -t ghcr.io/datadog/dd-trace-java/dd-trace-java:latest_snapshot -f ./tooling/ci/Dockerfile .
- docker push ghcr.io/datadog/dd-trace-java/dd-trace-java:latest_snapshot