Skip to content

Commit

Permalink
fix(ci): Remove useless jobs on agent6 context (#33481)
Browse files Browse the repository at this point in the history
  • Loading branch information
chouetz authored Jan 28, 2025
1 parent b14b072 commit 5c57563
Show file tree
Hide file tree
Showing 141 changed files with 6 additions and 10,177 deletions.
2 changes: 0 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,6 @@

/.gitlab/benchmarks/benchmarks.yml @DataDog/agent-apm

/.gitlab/functional_test/regression_detector.yml @DataDog/single-machine-performance



/chocolatey/ @DataDog/windows-agent
Expand Down
1 change: 0 additions & 1 deletion .gitlab/functional_test/include.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ include:
- .gitlab/functional_test/common.yml
- .gitlab/functional_test/security_agent.yml
- .gitlab/functional_test/serverless.yml
- .gitlab/functional_test/regression_detector.yml
- .gitlab/functional_test/workload_checks.yml
- .gitlab/functional_test/system_probe_windows.yml
- .gitlab/kernel_matrix_testing/common.yml
Expand Down
111 changes: 0 additions & 111 deletions .gitlab/functional_test/regression_detector.yml

This file was deleted.

4 changes: 0 additions & 4 deletions modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,6 @@ modules:
pkg/version: default
tasks/unit-tests/testdata/go_mod_formatter/invalid_package: ignored
tasks/unit-tests/testdata/go_mod_formatter/valid_package: ignored
test/e2e/containers/otlp_sender:
independent: false
should_tag: false
should_test_condition: never
test/fakeintake: default
test/integration/serverless/recorder-extension: ignored
test/integration/serverless/src: ignored
Expand Down
6 changes: 6 additions & 0 deletions pkg/security/tests/constants_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ func TestOctogonConstants(t *testing.T) {
}

t.Run("rc-vs-fallback", func(t *testing.T) {
if kv.IsAmazonLinux2023Kernel() {
t.Skipf("skip rc-vs-fallback on Amazon Linux 2023")
}
checkKernelCompatibility(t, "SLES kernels", func(kv *kernel.Version) bool {
return kv.IsSLESKernel() || (kv.IsAmazonLinux2023Kernel() && (testEnvironment == DockerEnvironment))
})
Expand Down Expand Up @@ -109,6 +112,9 @@ func TestOctogonConstants(t *testing.T) {
})

t.Run("btf-vs-fallback", func(t *testing.T) {
if kv.IsAmazonLinux2023Kernel() {
t.Skipf("skip btf-vs-fallback on Amazon Linux 2023")
}
btfFetcher, err := constantfetch.NewBTFConstantFetcherFromCurrentKernel()
if err != nil {
t.Skipf("btf constant fetcher is not available: %v", err)
Expand Down
122 changes: 0 additions & 122 deletions test/e2e/README.md

This file was deleted.

Loading

0 comments on commit 5c57563

Please sign in to comment.