From 7e9ba142ad7a5c88faea5c5b84a66ce8f59d7c16 Mon Sep 17 00:00:00 2001 From: Erik Seliger Date: Thu, 11 Jan 2024 20:39:00 +0100 Subject: [PATCH] Fix bazel config for backend integration tests (#59526) Renamed this job when we got rid of HTTP because that's the only version we need to run now. ## Test plan CI will fail if the new name is still wrong. --- .aspect/workflows/config.yaml | 2 +- dev/ci/internal/ci/bazel_operations.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.aspect/workflows/config.yaml b/.aspect/workflows/config.yaml index e51a87c904d..4781eb02c3c 100644 --- a/.aspect/workflows/config.yaml +++ b/.aspect/workflows/config.yaml @@ -28,7 +28,7 @@ tasks: include_eternal_tests: true targets: - //... - - //testing:grpc_backend_integration_test + - //testing:backend_integration_test # This target should only really run when on main which we aren't handling. For the time being while we # evaluate Aspect Workflows it is ok # TODO(burmudar): Let this only run on main branch diff --git a/dev/ci/internal/ci/bazel_operations.go b/dev/ci/internal/ci/bazel_operations.go index e1472b137cb..03fbf7a27ea 100644 --- a/dev/ci/internal/ci/bazel_operations.go +++ b/dev/ci/internal/ci/bazel_operations.go @@ -10,7 +10,7 @@ func BazelOperations(buildOpts bk.BuildOptions, opts CoreTestOperationsOptions) if !opts.AspectWorkflows { ops = append(ops, bazelPrechecks()) if opts.IsMainBranch { - ops = append(ops, bazelTest("//...", "//client/web:test", "//testing:codeintel_integration_test", "//testing:grpc_backend_integration_test")) + ops = append(ops, bazelTest("//...", "//client/web:test", "//testing:codeintel_integration_test", "//testing:backend_integration_test")) } else { ops = append(ops, bazelTest("//...", "//client/web:test")) }