Skip to content

Commit ce9b743

Browse files
authored
fix(.github/workflows): fix smoke-tests to avoid breaking changes in v0.70.x (#3973)
1 parent ca6a4cf commit ce9b743

File tree

4 files changed

+196
-3
lines changed

4 files changed

+196
-3
lines changed

.github/workflows/smoke-tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ jobs:
5858
run: |-
5959
mkdir -p $TEST_RESULTS
6060
go get -u -t $PACKAGES
61+
go get github.com/DataDog/datadog-agent/comp/core/tagger/[email protected]
62+
go get github.com/DataDog/datadog-agent/pkg/[email protected]
63+
go get github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/[email protected]
64+
go get github.com/DataDog/datadog-agent/pkg/[email protected]
65+
go get github.com/DataDog/datadog-agent/pkg/remoteconfig/[email protected]
66+
go get github.com/DataDog/datadog-agent/pkg/[email protected]
67+
go get github.com/DataDog/datadog-agent/pkg/util/[email protected]
68+
go get github.com/DataDog/datadog-agent/pkg/util/[email protected]
69+
go get github.com/DataDog/datadog-agent/pkg/[email protected]
6170
go mod tidy
6271
for d in `find . -iname go.mod | xargs -n1 dirname`; do pushd $d; go mod tidy; popd; done;
6372

go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ go 1.24.0
44

55
godebug x509negativeserial=1
66

7-
replace github.com/DataDog/datadog-agent/pkg/trace => github.com/DataDog/datadog-agent/pkg/trace v0.67.0
8-
97
require (
108
github.com/DataDog/datadog-agent/pkg/obfuscate v0.67.0
119
github.com/DataDog/datadog-agent/pkg/proto v0.67.0

0 commit comments

Comments
 (0)