mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
1a54be06cd
Have one script per build. This means more duplication between the scripts, but it's much easier to understand and to run locally.
49 lines
1.0 KiB
Bash
49 lines
1.0 KiB
Bash
#!/bin/sh
|
|
|
|
ACTION="$1"
|
|
|
|
set -eu
|
|
|
|
CACHEDIR="$HOME/cache"
|
|
NPROC=`nproc`
|
|
|
|
travis_install() {
|
|
cd other/docker/windows
|
|
|
|
docker build \
|
|
--build-arg SUPPORT_ARCH_i686=$i686 \
|
|
--build-arg SUPPORT_ARCH_x86_64=$x86_64 \
|
|
--build-arg SUPPORT_TEST=true \
|
|
-t toxcore-$WINDOWS_ARCH \
|
|
.
|
|
}
|
|
|
|
travis_script() {
|
|
. ".travis/flags-$CC.sh"
|
|
|
|
# Allows wine to display source code file names and line numbers on crash in
|
|
# its backtrace.
|
|
add_flag -gdwarf-2
|
|
|
|
docker run \
|
|
-e ALLOW_TEST_FAILURE=true \
|
|
-e ENABLE_ARCH_i686=$i686 \
|
|
-e ENABLE_ARCH_x86_64=$x86_64 \
|
|
-e ENABLE_TEST=true \
|
|
-e EXTRA_CMAKE_FLAGS="-DBOOTSTRAP_DAEMON=OFF -DDEBUG=ON -DTEST_TIMEOUT_SECONDS=90" \
|
|
-e DCMAKE_C_FLAGS="$C_FLAGS" \
|
|
-e CMAKE_CXX_FLAGS="$CXX_FLAGS" \
|
|
-e CMAKE_EXE_LINKER_FLAGS="$LD_FLAGS" \
|
|
-e CMAKE_SHARED_LINKER_FLAGS="$LD_FLAGS" \
|
|
-v "$PWD:/toxcore" \
|
|
-v "$PWD/result:/prefix" \
|
|
--rm \
|
|
toxcore-$WINDOWS_ARCH
|
|
}
|
|
|
|
if [ "-z" "$ACTION" ]; then
|
|
"travis_script"
|
|
else
|
|
"travis_$ACTION"
|
|
fi
|