mirror of
https://github.com/TokTok/c-toxcore
synced 2026-06-03 23:31:41 +00:00
b3c3c49d26
Docker doesn't have an IPv6 network by default, so these tests were failing when using IPv6.
25 lines
625 B
Bash
25 lines
625 B
Bash
#!/bin/sh
|
|
|
|
# When editing, make sure to update /other/docker/windows/Dockerfile and
|
|
# INSTALL.md to match.
|
|
|
|
export VERSION_OPUS="1.4"
|
|
export VERSION_SODIUM="1.0.19"
|
|
export VERSION_VPX="1.14.0"
|
|
export ENABLE_HASH_VERIFICATION=true
|
|
|
|
export SUPPORT_TEST=false
|
|
export SUPPORT_ARCH_i686=true
|
|
export SUPPORT_ARCH_x86_64=true
|
|
export CROSS_COMPILE=false
|
|
|
|
sh ./other/docker/windows/build_dependencies.sh
|
|
|
|
export ENABLE_TEST=false
|
|
export ALLOW_TEST_FAILURE=false
|
|
export ENABLE_ARCH_i686=true
|
|
export ENABLE_ARCH_x86_64=true
|
|
export EXTRA_CMAKE_FLAGS="-DTEST_TIMEOUT_SECONDS=90 -DUSE_IPV6=OFF"
|
|
|
|
sh ./other/docker/windows/build_toxcore.sh
|