Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Enable cimple tests by default but allow disabling them. #1436

Merged
merged 1 commit into from
May 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
---
cirrus-ci_task:
container:
image: toxchat/toktok-stack:0.0.7
image: toxchat/toktok-stack:0.0.10
cpu: 2
memory: 2G
configure_script:
- /src/workspace/tools/inject-repo c-toxcore
test_all_script:
- bazel test -k
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
--config=ci
--config=docker
--config=release
//c-toxcore/...
--build_tag_filters=-haskell
--test_tag_filters=-haskell
--remote_download_minimal
--config=ci
--config=release
//c-toxcore/...
2 changes: 1 addition & 1 deletion toxav/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -139,5 +139,5 @@ sh_test(
srcs = ["//hs-tokstyle/tools:check-cimple"],
args = ["$(location %s)" % f for f in CIMPLE_SRCS],
data = CIMPLE_SRCS,
tags = ["manual"],
tags = ["haskell"],
)
3 changes: 2 additions & 1 deletion toxcore/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ cc_test(
name = "crypto_core_test",
size = "small",
srcs = ["crypto_core_test.cc"],
flaky = True,
deps = [
":crypto_core",
"@com_google_googletest//:gtest_main",
Expand Down Expand Up @@ -296,5 +297,5 @@ sh_test(
srcs = ["//hs-tokstyle/tools:check-cimple"],
args = ["$(location %s)" % f for f in CIMPLE_SRCS],
data = CIMPLE_SRCS,
tags = ["manual"],
tags = ["haskell"],
)