From eebc516d55a9018e1da8090f9b3647e4c5a89be2 Mon Sep 17 00:00:00 2001 From: iphydf Date: Tue, 11 Jan 2022 13:15:33 +0000 Subject: [PATCH] chore: Disable the OpenMP cracker in bazel for now. I broke it. I'll re-enable it if/when I fix omp support in the bazel build. --- .cirrus.yml | 3 --- other/fun/BUILD.bazel | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 5365c0f8..9615a9b1 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -12,7 +12,6 @@ bazel-release_task: --build_tag_filters=-haskell --test_tag_filters=-haskell --remote_download_minimal - --config=release -- //c-toxcore/... -//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus? @@ -30,7 +29,6 @@ bazel-debug_task: --build_tag_filters=-haskell --test_tag_filters=-haskell --remote_download_minimal - --config=debug -- //c-toxcore/... -//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus? @@ -47,6 +45,5 @@ cimple_task: --remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST --build_tag_filters=haskell --test_tag_filters=haskell - --config=release -- //c-toxcore/... diff --git a/other/fun/BUILD.bazel b/other/fun/BUILD.bazel index e730427d..7ed252a4 100644 --- a/other/fun/BUILD.bazel +++ b/other/fun/BUILD.bazel @@ -1,15 +1,15 @@ load("@rules_cc//cc:defs.bzl", "cc_binary") -cc_binary( - name = "cracker", - srcs = ["cracker.c"], - copts = ["-fopenmp"], - linkopts = ["-fopenmp"], - deps = [ - "//c-toxcore/toxcore:ccompat", - "@libsodium", - ], -) +#cc_binary( +# name = "cracker", +# srcs = ["cracker.c"], +# copts = ["-fopenmp"], +# linkopts = ["-fopenmp"], +# deps = [ +# "//c-toxcore/toxcore:ccompat", +# "@libsodium", +# ], +#) cc_binary( name = "cracker_simple",