Skip to content

Commit

Permalink
fix: Add entrypoint instead of cmd for BYOB tests
Browse files Browse the repository at this point in the history
Bug: N/A
Change-Id: Ic37f067c4640ea7fd57ddd9f0fc5196f782131f4
GitOrigin-RevId: 237c7cd21b8aeb0ae372fa51e7a4bfa87ada4843
  • Loading branch information
Privacy Sandbox Team authored and copybara-github committed Sep 25, 2024
1 parent ad39d54 commit 91f160c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/roma/byob/test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ pkg_files(
flavor = user.flavor,
test_name = test_name,
),
cmd = [cmd],
debug = False,
entrypoint = [entrypoint],
repo_tags = [
"roma_byob_{test_name}_test_image:v1-{flavor}".format(
flavor = user.flavor,
Expand All @@ -118,7 +118,7 @@ pkg_files(
use_nonroot = True if user.flavor == "nonroot" else False,
)
for user in DISTROLESS_USERS
for test_name, cmd in (
for test_name, entrypoint in (
("sample", "/server/bin/roma_byob_test"),
("example", "/server/bin/example_test"),
)
Expand Down

0 comments on commit 91f160c

Please sign in to comment.