2018-09-23 06:53:35 +08:00
|
|
|
---
|
2022-01-30 06:20:03 +08:00
|
|
|
bazel-opt_task:
|
2018-09-23 06:53:35 +08:00
|
|
|
container:
|
2022-01-31 03:15:30 +08:00
|
|
|
image: toxchat/toktok-stack:latest-release
|
2020-04-24 22:18:00 +08:00
|
|
|
cpu: 2
|
2021-11-27 10:27:45 +08:00
|
|
|
memory: 2G
|
2018-09-23 06:53:35 +08:00
|
|
|
configure_script:
|
2022-03-25 02:16:45 +08:00
|
|
|
- git submodule update --init --recursive
|
2021-11-26 02:13:33 +08:00
|
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
2018-09-23 06:53:35 +08:00
|
|
|
test_all_script:
|
2021-12-04 00:20:10 +08:00
|
|
|
- cd /src/workspace && bazel test -k
|
2021-11-26 02:13:33 +08:00
|
|
|
--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?
|
2021-11-27 10:27:45 +08:00
|
|
|
|
2022-01-30 06:20:03 +08:00
|
|
|
bazel-dbg_task:
|
2022-01-02 10:48:54 +08:00
|
|
|
container:
|
2022-01-31 03:15:30 +08:00
|
|
|
image: toxchat/toktok-stack:latest-debug
|
2022-01-02 10:48:54 +08:00
|
|
|
cpu: 2
|
|
|
|
memory: 2G
|
|
|
|
configure_script:
|
2022-03-25 02:16:45 +08:00
|
|
|
- git submodule update --init --recursive
|
2022-01-02 10:48:54 +08:00
|
|
|
- /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?
|
|
|
|
|
2022-01-13 03:02:02 +08:00
|
|
|
bazel-asan_task:
|
|
|
|
container:
|
2022-01-31 03:15:30 +08:00
|
|
|
image: toxchat/toktok-stack:latest-asan
|
2022-01-13 03:02:02 +08:00
|
|
|
cpu: 2
|
2022-01-13 07:44:10 +08:00
|
|
|
memory: 4G
|
2022-01-13 03:02:02 +08:00
|
|
|
configure_script:
|
2022-03-25 02:16:45 +08:00
|
|
|
- git submodule update --init --recursive
|
2022-01-13 03:02:02 +08:00
|
|
|
- /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?
|
|
|
|
|
2022-02-19 05:44:28 +08:00
|
|
|
# TODO(iphydf): Enable once this works properly.
|
|
|
|
#bazel-msan_task:
|
|
|
|
# container:
|
|
|
|
# image: toxchat/toktok-stack:latest-msan
|
|
|
|
# cpu: 2
|
|
|
|
# memory: 4G
|
|
|
|
# configure_script:
|
2022-03-25 02:16:45 +08:00
|
|
|
# - git submodule update --init --recursive
|
2022-02-19 05:44:28 +08:00
|
|
|
# - /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?
|
2022-01-13 07:44:10 +08:00
|
|
|
|
|
|
|
# TODO(iphydf): Fix test timeouts.
|
2022-01-13 03:02:02 +08:00
|
|
|
bazel-tsan_task:
|
|
|
|
container:
|
2022-01-31 03:15:30 +08:00
|
|
|
image: toxchat/toktok-stack:latest-tsan
|
2022-01-13 03:02:02 +08:00
|
|
|
cpu: 2
|
2022-01-13 07:44:10 +08:00
|
|
|
memory: 4G
|
2022-01-13 03:02:02 +08:00
|
|
|
configure_script:
|
2022-03-25 02:16:45 +08:00
|
|
|
- git submodule update --init --recursive
|
2022-01-13 03:02:02 +08:00
|
|
|
- /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/...
|
2022-01-13 07:44:10 +08:00
|
|
|
-//c-toxcore/auto_tests:conference_av_test
|
|
|
|
-//c-toxcore/auto_tests:conference_test
|
|
|
|
-//c-toxcore/auto_tests:file_transfer_test
|
2022-09-22 21:36:19 +08:00
|
|
|
-//c-toxcore/auto_tests:group_tcp_test
|
2022-01-13 07:44:10 +08:00
|
|
|
-//c-toxcore/auto_tests:onion_test
|
|
|
|
-//c-toxcore/auto_tests:tcp_relay_test
|
|
|
|
-//c-toxcore/auto_tests:tox_many_test
|
2022-01-13 03:02:02 +08:00
|
|
|
|
2021-11-27 10:27:45 +08:00
|
|
|
cimple_task:
|
|
|
|
container:
|
2022-01-31 03:15:30 +08:00
|
|
|
image: toxchat/toktok-stack:latest-release
|
2021-11-27 10:27:45 +08:00
|
|
|
cpu: 2
|
|
|
|
memory: 4G
|
|
|
|
configure_script:
|
2022-03-25 02:16:45 +08:00
|
|
|
- git submodule update --init --recursive
|
2021-11-27 10:27:45 +08:00
|
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
|
|
test_all_script:
|
2021-12-04 00:20:10 +08:00
|
|
|
- cd /src/workspace && bazel test -k
|
2021-11-27 10:27:45 +08:00
|
|
|
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
|
|
--build_tag_filters=haskell
|
|
|
|
--test_tag_filters=haskell
|
|
|
|
--
|
|
|
|
//c-toxcore/...
|