mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
4746a8b3af
* `crypto_memcmp` was replaced by more specific functions. We never want to compare arbitrary amounts of data this way. We use these functions to compare key material. * apidsl has been bothering people, so now we un-bother them. You're welcome. * Added the memlock/unlock functions from the New Group Chats branch. * Remove some system dependencies in crypto_core_mem.c. * Renamed UPPERCASE_NAMES to Snake_Camel_Case names.
35 lines
1002 B
YAML
35 lines
1002 B
YAML
---
|
|
cirrus-ci_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.28-third_party
|
|
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
|
|
--config=release
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus?
|
|
|
|
cimple_task:
|
|
container:
|
|
image: toxchat/toktok-stack:0.0.28-third_party
|
|
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
|
|
--config=release
|
|
--
|
|
//c-toxcore/...
|