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
12 changes: 9 additions & 3 deletions .gitlab/build_agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.build-agent-tpl:
variables:
# Pass these to triggered agent build job.
AGENT_BRANCH: "main"
RELEASE_VERSION_6: "nightly"
RELEASE_VERSION_7: "nightly-a7"
BUCKET_BRANCH: "dev"
Expand All @@ -10,18 +11,23 @@
# disable kitchen and e2e tests
RUN_KITCHEN_TESTS: "false"
RUN_E2E_TESTS: "off"
# Override AGENT_BRANCH for release branches
rules:
- if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^[0-9]+\.[0-9]+\.x$/
variables:
AGENT_BRANCH: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME
stage: build
trigger:
project: DataDog/datadog-agent
branch: main
branch: $AGENT_BRANCH
# It's more convenient to directly show if downstream pipeline succeeded.
strategy: depend

build-agent-auto:
extends: .build-agent-tpl
rules:
# Do not run on release branches
- if: $CI_COMMIT_BRANCH =~ /^7\.\d+\.x$/
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+\.x$/
when: never
# Only run if the branch is not a Github Merge Queue one.
- if: $CI_COMMIT_BRANCH !~ /^gh-readonly-queue.*/
Expand All @@ -39,7 +45,7 @@ build-agent-manual-release:
trigger:
branch: $CI_COMMIT_BRANCH
rules:
- if: $CI_COMMIT_BRANCH =~ /^7\.\d+\.x$/
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+\.x$/
when: manual

# Always have the option to run manually the agent build manually against the agent's main
Expand Down
2 changes: 1 addition & 1 deletion vonage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Configure the Datadog endpoint to forward Vonage logs to Datadog.
|----------|----------|
| API key | API Key of the Vonage account. |
| API secret | API Secret of the Vonage account. |
| Include Message | Include boy of the messages in logs. (True or False) |
| Include Message | Include body of the messages in logs. (True or False) |



Expand Down
Loading