Skip to content

Commit 8d03aa0

Browse files
committed
rename deva to dda
1 parent be4ed69 commit 8d03aa0

File tree

195 files changed

+766
-766
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+766
-766
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ jobs:
6161
- run:
6262
name: check go version
6363
command: |
64-
deva inv -e check-go-version
64+
dda inv -e check-go-version
6565
- run:
6666
name: grab go deps
6767
command: |
68-
deva inv -e deps
68+
dda inv -e deps
6969
- run:
7070
name: install go tooling
7171
command: |
72-
deva inv -e install-tools
72+
dda inv -e install-tools
7373
- save_cache:
7474
<<: *save_deps
7575
paths:
@@ -87,7 +87,7 @@ jobs:
8787
- setup_remote_docker
8888
- run:
8989
name: run integration tests
90-
command: deva inv -e integration-tests --race --remote-docker
90+
command: dda inv -e integration-tests --race --remote-docker
9191

9292
docker_tests:
9393
<<: *job_template
@@ -97,7 +97,7 @@ jobs:
9797
- setup_remote_docker
9898
- run:
9999
name: run docker image tests
100-
command: deva inv -e docker.test
100+
command: dda inv -e docker.test
101101

102102
workflows:
103103
version: 2

.copyright-overrides.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ go.opentelemetry.io/otel/semconv/internal: Copyright The OpenTelemetry Authors
295295
go.opentelemetry.io/otel/semconv/v1.12.0: Copyright The OpenTelemetry Authors
296296
golang.org/x/crypto/chacha20poly1305: Copyright (c) 2009 The Go Authors. All rights reserved
297297

298-
# Not added by `deva inv generate-licenses` but spotted by `deva inv -e lint-licenses`
298+
# Not added by `dda inv generate-licenses` but spotted by `dda inv -e lint-licenses`
299299
github.com/AdaLogics/go-fuzz-headers: AdamKorcz <[email protected]>|AdamKorcz <[email protected]>|Sebastiaan van Stijn <[email protected]>|AdaLogics <[email protected]>|Kazuyoshi Kato <[email protected]>
300300
github.com/AdamKorcz/go-118-fuzz-build/testing: AdamKorcz <[email protected]>|AdamKorcz <[email protected]>|John Howard <[email protected]>|Kazuyoshi Kato <[email protected]>|Khaled Yakdan <[email protected]>|AdamKorcz <[email protected]>|Sebastiaan van Stijn <[email protected]>
301301
github.com/Microsoft/go-winio/pkg/bindfilter: Copyright (c) 2015 Microsoft

.dda/version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.5.0

.deva/version

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@
291291
/omnibus/config/software/snmp-traps.rb @DataDog/ndm-core
292292
/omnibus/resources/*/msi/ @DataDog/windows-agent
293293

294-
# The following is managed by `deva inv lint-components` -- DO NOT EDIT
294+
# The following is managed by `dda inv lint-components` -- DO NOT EDIT
295295
# BEGIN COMPONENTS
296296
/comp @DataDog/agent-runtimes
297297
/comp/agent @DataDog/agent-runtimes
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: Install deva
2-
description: Installs the defined version of deva
1+
name: Install dda
2+
description: Installs the defined version of dda
33
inputs:
44
version:
5-
description: The version of deva to install
5+
description: The version of dda to install
66
required: false
77
default: ""
88
features:
@@ -15,11 +15,11 @@ runs:
1515
steps:
1616
- name: Set version
1717
id: set-version
18-
run: echo "version=$(cat .deva/version)" >> $GITHUB_OUTPUT
18+
run: echo "version=$(cat .dda/version)" >> $GITHUB_OUTPUT
1919
shell: bash
2020

21-
- name: Install deva
22-
uses: DataDog/datadog-agent-dev@5ba7488629dc306a7002cda678ea46db39e54a17
21+
- name: Install dda
22+
uses: DataDog/datadog-agent-dev@e1806a36cb1da98f3a4852c6620b628bc31d81b6
2323
with:
2424
version: ${{ inputs.version || steps.set-version.outputs.version }}
2525
features: ${{ inputs.features }}

.github/dependabot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ updates:
1818
- dependency-name: github.com/DataDog/datadog-agent/*
1919
# Ignore golang.org/x/... deps to avoid noise, they are updated together, pretty regularly
2020
- dependency-name: golang.org/x/*
21-
# OpenTelemetry collector packages need to be updated with `deva inv` rather than dependabot
21+
# OpenTelemetry collector packages need to be updated with `dda inv` rather than dependabot
2222
- dependency-name: go.opentelemetry.io/collector/*
2323
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/*
2424
schedule:
@@ -53,7 +53,7 @@ updates:
5353
- dependency-name: github.com/mailru/easyjson
5454
# Ignore golang.org/x/... deps to avoid noise, they are updated together, pretty regularly
5555
- dependency-name: golang.org/x/*
56-
# OpenTelemetry collector packages need to be updated with `deva inv` rather than dependabot
56+
# OpenTelemetry collector packages need to be updated with `dda inv` rather than dependabot
5757
- dependency-name: go.opentelemetry.io/collector/*
5858
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/*
5959
schedule:

.github/workflows/assess_permissions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
python-version-file: .python-version
2929
cache: "pip"
3030

31-
- name: Install deva
32-
uses: ./.github/actions/install-deva
31+
- name: Install dda
32+
uses: ./.github/actions/install-dda
3333
with:
3434
features: legacy-tasks legacy-github
3535

3636
- name: Assess Repository Permissions
3737
env:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
SLACK_DATADOG_AGENT_BOT_TOKEN: ${{ secrets.SLACK_DATADOG_AGENT_BOT_TOKEN }}
40-
run: deva inv -e github.check-permissions --repo ${{ matrix.value }}
40+
run: dda inv -e github.check-permissions --repo ${{ matrix.value }}

.github/workflows/assign_issue.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
# Dependencies are installed at runtime. Otherwise it would create a huge image see https://hub.docker.com/r/pytorch/pytorch/tags
2424
run: |
2525
pip install --upgrade pip
26-
pip install --no-compile --no-cache-dir torch transformers "git+https://github.com/DataDog/datadog-agent-dev.git@$(cat .deva/version)"
27-
deva self dep sync -f legacy-tasks
26+
pip install --no-compile --no-cache-dir torch transformers "git+https://github.com/DataDog/datadog-agent-dev.git@$(cat .dda/version)"
27+
dda self dep sync -f legacy-tasks
2828
- name: Assign issue
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
SLACK_DATADOG_AGENT_BOT_TOKEN : ${{ secrets.SLACK_DATADOG_AGENT_BOT_TOKEN }}
3232
run: |
33-
deva inv -e issue.assign-owner -i ${{ github.event.issue.number }}
33+
dda inv -e issue.assign-owner -i ${{ github.event.issue.number }}

.github/workflows/buildimages-update.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,20 +71,20 @@ jobs:
7171
# in case it's a Go update PR
7272
go-version: ${{ inputs.go_version }}
7373

74-
- name: Install deva
75-
uses: ./.github/actions/install-deva
74+
- name: Install dda
75+
uses: ./.github/actions/install-dda
7676
with:
7777
features: legacy-tasks
7878

7979
- name: Get current Go version
8080
id: current_go_version
8181
run: |
82-
echo "GO_VERSION=$(deva inv go-version)" >> $GITHUB_OUTPUT
82+
echo "GO_VERSION=$(dda inv go-version)" >> $GITHUB_OUTPUT
8383
8484
- name: Get current buildimage tag
8585
id: current_buildimage_tag
8686
run: |
87-
echo "BUILDIMAGE_TAG=$(deva inv buildimages.get-tag)" >> $GITHUB_OUTPUT
87+
echo "BUILDIMAGE_TAG=$(dda inv buildimages.get-tag)" >> $GITHUB_OUTPUT
8888
8989
- name: Update buildimages IDs and Go version
9090
id: update_build_images
@@ -97,10 +97,10 @@ jobs:
9797
IMAGES_ID: ${{ inputs.images_id }}
9898
run: |
9999
if [ "$CURRENT_GO_VERSION" = "$INPUT_GO_VERSION" ]; then
100-
deva inv -e buildimages.update --tag "$IMAGES_ID" "$TEST_VERSION_FLAG"
100+
dda inv -e buildimages.update --tag "$IMAGES_ID" "$TEST_VERSION_FLAG"
101101
echo "MESSAGE=Update buildimages ID to $IMAGES_ID" >> $GITHUB_OUTPUT
102102
else
103-
deva inv -e update-go --image-tag "$IMAGES_ID" "$TEST_VERSION_FLAG" $INCLUDE_OTEL_MODULES -v "$INPUT_GO_VERSION"
103+
dda inv -e update-go --image-tag "$IMAGES_ID" "$TEST_VERSION_FLAG" $INCLUDE_OTEL_MODULES -v "$INPUT_GO_VERSION"
104104
echo "MESSAGE=Update Go version to $INPUT_GO_VERSION" >> $GITHUB_OUTPUT
105105
fi
106106
@@ -152,7 +152,7 @@ jobs:
152152
GITHUB_REF: ${{ github.ref }}
153153
run: |
154154
# Generate the PR description
155-
deva inv -e buildimages.generate-pr-body \
155+
dda inv -e buildimages.generate-pr-body \
156156
"$CURRENT_BUILDIMAGE_TAG" \
157157
"$IMAGES_ID" \
158158
"$CURRENT_GO_VERSION" \

0 commit comments

Comments
 (0)