326d72a965
Some checks are pending
ContinuousDelivery / linux-ubuntu (push) Waiting to run
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Waiting to run
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Waiting to run
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Waiting to run
ContinuousDelivery / windows (push) Waiting to run
ContinuousDelivery / windows-asan (push) Waiting to run
ContinuousDelivery / release (push) Blocked by required conditions
ContinuousIntegration / linux (push) Waiting to run
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Waiting to run
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Waiting to run
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Waiting to run
ContinuousIntegration / macos (push) Waiting to run
ContinuousIntegration / windows (push) Waiting to run
Merge commit 'cae0ab9c5c75eda665d21dc36cfeef48c1e04b53'
84 lines
2.3 KiB
YAML
84 lines
2.3 KiB
YAML
---
|
|
bazel-opt_task:
|
|
timeout_in: 5m
|
|
container:
|
|
image: toxchat/toktok-stack:latest-release
|
|
cpu: 2
|
|
memory: 2G
|
|
configure_script:
|
|
- git submodule update --init --recursive
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:tcp_relay_test # Cirrus doesn't allow external network connections.
|
|
|
|
bazel-dbg_task:
|
|
timeout_in: 5m
|
|
container:
|
|
image: toxchat/toktok-stack:latest-debug
|
|
cpu: 2
|
|
memory: 2G
|
|
configure_script:
|
|
- git submodule update --init --recursive
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=-haskell
|
|
--test_tag_filters=-haskell
|
|
--
|
|
//c-toxcore/...
|
|
-//c-toxcore/auto_tests:tcp_relay_test # Cirrus doesn't allow external network connections.
|
|
|
|
cimple_task:
|
|
timeout_in: 5m
|
|
container:
|
|
image: toxchat/toktok-stack:latest-release
|
|
cpu: 2
|
|
memory: 4G
|
|
configure_script:
|
|
- git submodule update --init --recursive
|
|
- /src/workspace/tools/inject-repo c-toxcore
|
|
test_all_script:
|
|
- cd /src/workspace && bazel test -k
|
|
--remote_cache=http://$CIRRUS_HTTP_CACHE_HOST
|
|
--build_tag_filters=haskell
|
|
--test_tag_filters=haskell
|
|
--
|
|
//c-toxcore/...
|
|
|
|
freebsd_task:
|
|
timeout_in: 5m
|
|
freebsd_instance:
|
|
image_family: freebsd-14-1
|
|
configure_script:
|
|
- PAGER=cat ASSUME_ALWAYS_YES=YES pkg install
|
|
cmake
|
|
git
|
|
gmake
|
|
googletest
|
|
libconfig
|
|
libsodium
|
|
libvpx
|
|
opus
|
|
pkgconf
|
|
- git submodule update --init --recursive
|
|
test_all_script:
|
|
- |
|
|
# TODO(iphydf): Investigate FreeBSD failures on these tests.
|
|
sed -Ei -e '/\(dht_getnodes_api\)/s/^/#/' auto_tests/CMakeLists.txt
|
|
cmake . \
|
|
-DMIN_LOGGER_LEVEL=TRACE \
|
|
-DMUST_BUILD_TOXAV=ON \
|
|
-DNON_HERMETIC_TESTS=OFF \
|
|
-DTEST_TIMEOUT_SECONDS=50 \
|
|
-DUSE_IPV6=OFF \
|
|
-DAUTOTEST=ON
|
|
cmake --build . --target install
|
|
ctest -j50 --output-on-failure --rerun-failed --repeat until-pass:6
|