mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
d23222c92f
Currently: 1) libsodium and 2) nacl. Note that the "nacl" variant is actually libsodium. We just want to make sure the static analysers see the `VANILLA_NACL` code paths.
136 lines
4.3 KiB
YAML
136 lines
4.3 KiB
YAML
---
|
|
bazel-release_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.31-release
|
|
cpu: 2
|
|
memory: 2G
|
|
configure_script:
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--remote_download_minimal
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus?
|
|
|
|
bazel-debug_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.31-debug
|
|
cpu: 2
|
|
memory: 2G
|
|
configure_script:
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--remote_download_minimal
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus?
|
|
|
|
bazel-asan_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.31-asan
|
|
cpu: 2
|
|
memory: 4G
|
|
configure_script:
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--remote_download_minimal
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus?
|
|
|
|
# TODO(iphydf): Remove "|| true" once this works properly.
|
|
bazel-msan_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.31-msan
|
|
cpu: 2
|
|
memory: 4G
|
|
configure_script:
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--remote_download_minimal
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:tcp_relay_test || true # TODO(robinlinden): Why does this pass locally but not in Cirrus?
|
|
|
|
# TODO(iphydf): Fix test timeouts.
|
|
bazel-tsan_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.31-tsan
|
|
cpu: 2
|
|
memory: 4G
|
|
configure_script:
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--remote_download_minimal
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:conference_av_test
|
|
-//c-toxcore/auto_tests:conference_test
|
|
-//c-toxcore/auto_tests:dht_test
|
|
-//c-toxcore/auto_tests:file_transfer_test
|
|
-//c-toxcore/auto_tests:onion_test
|
|
-//c-toxcore/auto_tests:tcp_relay_test
|
|
-//c-toxcore/auto_tests:tox_many_test
|
|
|
|
# TODO(iphydf): Fix timeouts so we can run more of the tests disabled below.
|
|
bazel-valgrind_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.31-release
|
|
cpu: 2
|
|
memory: 4G
|
|
configure_script:
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--remote_download_minimal
|
|
--config=valgrind
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:conference_av_test
|
|
-//c-toxcore/auto_tests:conference_test
|
|
-//c-toxcore/auto_tests:dht_test
|
|
-//c-toxcore/auto_tests:encryptsave_test
|
|
-//c-toxcore/auto_tests:file_transfer_test
|
|
-//c-toxcore/auto_tests:onion_test
|
|
-//c-toxcore/auto_tests:tcp_relay_test
|
|
-//c-toxcore/auto_tests:tox_many_tcp_test
|
|
-//c-toxcore/auto_tests:tox_many_test
|
|
|
|
cimple_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.31-release
|
|
cpu: 2
|
|
memory: 4G
|
|
configure_script:
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=haskell
|
|
--test_tag_filters=haskell
|
|
--
|
|
//c-toxcore/...
|