mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
7155f7f60e
It doesn't work at all, because we're missing something in the net code to do with endian conversions. I haven't investigated, yet, but at least now we have a failing test that can be investigated. Also moved to cmake 3.5 at minimum. CMake will stop supporting lower versions than that, soon. Also moved to C11 from C99 to get `static_assert`. Also made a network ERROR into a WARNING. It triggers on FreeBSD.
56 lines
1.2 KiB
Bash
Executable File
56 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (C) 2018-2023 nurupo
|
|
|
|
# Toxcore building
|
|
|
|
set -eux
|
|
|
|
cd .. # /work
|
|
. cmake-freebsd-run.sh
|
|
|
|
# === Get VM ready to build the code ===
|
|
|
|
gunzip "$IMAGE_NAME.gz"
|
|
|
|
mv c-toxcore /
|
|
|
|
start_vm
|
|
|
|
# Copy over toxcore code from host to qemu
|
|
scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -P "$SSH_PORT" -r /c-toxcore root@localhost:~
|
|
|
|
RUN ls -lh
|
|
|
|
cd /c-toxcore
|
|
. '.github/scripts/flags-clang.sh'
|
|
|
|
add_ld_flag -Wl,-z,defs
|
|
|
|
# Make compilation error on a warning.
|
|
add_flag -Werror
|
|
|
|
# This triggers on FreeBSD's clang.
|
|
add_flag -Wno-format
|
|
add_flag -Wno-unsafe-buffer-usage
|
|
|
|
RUN "cmake -B_build -Hc-toxcore \
|
|
-DCMAKE_C_FLAGS='$C_FLAGS' \
|
|
-DCMAKE_CXX_FLAGS='$CXX_FLAGS' \
|
|
-DCMAKE_EXE_LINKER_FLAGS='$LD_FLAGS' \
|
|
-DCMAKE_SHARED_LINKER_FLAGS='$LD_FLAGS' \
|
|
-DCMAKE_INSTALL_PREFIX:PATH='_install' \
|
|
-DMIN_LOGGER_LEVEL=TRACE \
|
|
-DMUST_BUILD_TOXAV=ON \
|
|
-DNON_HERMETIC_TESTS=ON \
|
|
-DSTRICT_ABI=ON \
|
|
-DTEST_TIMEOUT_SECONDS=90 \
|
|
-DUSE_IPV6=OFF \
|
|
-DAUTOTEST=ON"
|
|
|
|
# We created the VM with the same number of cores as the host, so the host-ran `nproc` here is fine.
|
|
RUN 'gmake "-j$NPROC" -k install -C_build'
|
|
RUN 'gmake "-j$NPROC" test ARGS="-j50" -C_build || true'
|
|
|
|
# Gracefully shut down the VM.
|
|
stop_vm
|