Skip to content

Commit

Permalink
build(zk): add missing chage from 5e9f0cf
Browse files Browse the repository at this point in the history
  • Loading branch information
TomTaehoonKim committed Feb 6, 2024
1 parent 1d4a745 commit fe1edc7
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions tachyon/zk/plonk/examples/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("//bazel:tachyon_cc.bzl", "tachyon_cc_library", "tachyon_cc_test")
load("//bazel:tachyon_cc.bzl", "tachyon_cc_library", "tachyon_cc_unittest")

package(default_visibility = ["//visibility:public"])

Expand Down Expand Up @@ -52,9 +52,7 @@ tachyon_cc_library(
hdrs = ["simple_lookup_circuit_test_data.h"],
)

# TODO(dongchangYoo): This is failed in CI because of timeout, 60 secs.
# Change |tachyon_cc_test| to |tachyon_cc_unittest| once CI can run within the timeout.
tachyon_cc_test(
tachyon_cc_unittest(
name = "shuffle_circuit_test",
srcs = ["shuffle_circuit_test.cc"],
deps = [
Expand All @@ -69,7 +67,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_circuit_test",
srcs = ["simple_circuit_test.cc"],
deps = [
Expand All @@ -83,7 +81,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_lookup_circuit_test",
srcs = ["simple_lookup_circuit_test.cc"],
deps = [
Expand All @@ -97,7 +95,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_lookup_v1_circuit_test",
srcs = ["simple_lookup_v1_circuit_test.cc"],
deps = [
Expand All @@ -112,7 +110,7 @@ tachyon_cc_test(
],
)

tachyon_cc_test(
tachyon_cc_unittest(
name = "simple_v1_circuit_test",
srcs = ["simple_v1_circuit_test.cc"],
deps = [
Expand Down

0 comments on commit fe1edc7

Please sign in to comment.