-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
internal/apps: move setup-smoke-test
Move setup-smoke-test from internal/apps/setup-smoke-test to internal/setup-smoke tests. This allows the other internal/apps to use the latest version of go. We want this because these apps are often used to test the latest new features which may depend on new go version. They are also used for screenshots where we don't want to show an old go version. setup-smoke-test is serving a different purpose and needs to be tested against the minimum version of Go that we support. So move it to a separate location and give it its own go.mod file.
- Loading branch information
Showing
5 changed files
with
254 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
module github.com/DataDog/dd-trace-go/internal/setup-smoke-test | ||
|
||
go 1.22 | ||
|
||
require gopkg.in/DataDog/dd-trace-go.v1 v1.67.1 | ||
|
||
require ( | ||
github.com/DataDog/appsec-internal-go v1.7.0 // indirect | ||
github.com/DataDog/datadog-agent/pkg/obfuscate v0.48.0 // indirect | ||
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.48.1 // indirect | ||
github.com/DataDog/datadog-go/v5 v5.3.0 // indirect | ||
github.com/DataDog/go-libddwaf/v3 v3.3.0 // indirect | ||
github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect | ||
github.com/DataDog/gostackparse v0.7.0 // indirect | ||
github.com/DataDog/sketches-go v1.4.5 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/eapache/queue/v2 v2.0.0-20230407133247-75960ed334e4 // indirect | ||
github.com/ebitengine/purego v0.6.0-alpha.5 // indirect | ||
github.com/google/pprof v0.0.0-20230817174616-7a8ec2ada47b // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect | ||
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/outcaste-io/ristretto v0.2.3 // indirect | ||
github.com/philhofer/fwd v1.1.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/richardartoul/molecule v1.0.1-0.20240531184615-7ca0df43c0b3 // indirect | ||
github.com/ryanuber/go-glo |