Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stages:
include:
- local: .gitlab/one-pipeline.locked.yml
- project: 'ddoghq/llm-validation-platform'
ref: 0f48ca35f0b3dfd19d5c0dc9f92aa977c99bebbf # v0.1.1 (immutable SHA; a tag could be retargeted)
ref: d59e4af6d6666092f65740b9a4d1bf3651a64321 # v0.1.2 (immutable SHA; a tag could be retargeted)
file: '/ci/llm-validation.gitlab-ci.yml'
# MIGRATION TOUCHPOINT (GitHub org / GitLab group split):
# GitLab does not expand top-level `variables:` inside `include:` keywords,
Expand Down Expand Up @@ -45,7 +45,7 @@ variables:
"llm validation":
variables:
LLMVAL_PLATFORM_PROJECT: "ddoghq/llm-validation-platform"
LLMVAL_PLATFORM_REF: "0f48ca35f0b3dfd19d5c0dc9f92aa977c99bebbf" # v0.1.1 (must match include ref above)
LLMVAL_PLATFORM_REF: "d59e4af6d6666092f65740b9a4d1bf3651a64321" # v0.1.2 (must match include ref above)

build-windows-ci-image:
stage: build
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ The full managed tracer (`Datadog.Trace.dll`) contains all auto-instrumentation
- Use modern C# syntax, but avoid features requiring types unavailable in older runtimes (e.g., no `ValueTuple` syntax for .NET Framework 4.6.1)
- For instance, prefer `is not null` to `!= null`
- Prefer modern collection expressions (`[]`)
- Use `StringUtil.IsNullOrEmpty()` instead of `string.IsNullOrEmpty()` for compatibility across all supported runtimes
- Use `StringUtil.IsNullOrEmpty()` instead of `string.IsNullOrEmpty()` for compatibility across all supported runtimes.
- StyleCop: see `tracer/stylecop.json`; address warnings before pushing.
- Never manually edit generated files (`.g.` in the file extension). Read the file header for regeneration instructions instead.

Expand Down
Loading