8000 chore: Add a GH Actions code coverage job by robinlinden · Pull Request #1850 · TokTok/c-toxcore · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: Add a GH Actions code coverage job #1850

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,18 @@ jobs:
- name: Build and test
run: .travis/cmake-osx

coverage-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and test
run: .travis/cmake-linux
env:
CC: gcc
CXX: g++
- name: Upload coverage
run: .travis/upload-coverage

build-tcc:
runs-on: ubuntu-latest
steps:
Expand Down
105 changes: 25 additions & 80 deletions .travis/cmake-linux
Original file line number Diff line number Diff line change
@@ -1,94 +1,39 @@
#!/bin/bash

ACTION="$1"

set -eu

CACHEDIR="$HOME/cache"
NPROC=$(nproc)
ASTYLE="$CACHEDIR/astyle/build/gcc/bin/astyle"
ASTYLE_VERSION=3.1
TRAVIS_TOOL="https://raw.githubusercontent.com/TokTok/ci-tools/master/bin/travis-haskell"

travis_install() {
bash <(curl -s "$TRAVIS_TOOL") download
travis-haskell download TokTok/hs-tokstyle tokstyle "$HOME/.local"

which coveralls || {
# Install cpp-coveralls to upload test coverage results.
pip install --user ndg-httpsclient urllib3[secure] cpp-coveralls

# Work around https://github.com/eddyxu/cpp-coveralls/issues/108 by manually
# installing the pyOpenSSL module and injecting it into urllib3 as per
# https://urllib3.readthedocs.io/en/latest/user-guide.html#ssl-py2
sed -i -e '/^import sys$/a import urllib3.contrib.pyopenssl\nurllib3.contrib.pyopenssl.inject_into_urllib3()' "$(which coveralls)"
}

# Install astyle (version in ubuntu-precise too old).
([ -f "$ASTYLE" ] && "$ASTYLE" --version | grep "$ASTYLE_VERSION" >/dev/null) || {
wget -O ../astyle.tar.gz "https://deb.debian.org/debian/pool/main/a/astyle/astyle_$ASTYLE_VERSION.orig.tar.gz"
tar -xf ../astyle.tar.gz -C "$CACHEDIR"
make -C "$CACHEDIR/astyle/build/gcc" clean
make -C "$CACHEDIR/astyle/build/gcc" "-j$NPROC"
}
}

run_static_analysis() {
pylint3 -E other/analysis/check_recursion

export CPPFLAGS="-isystem $CACHEDIR/include"
export LDFLAGS="-L$CACHEDIR/lib"
other/analysis/run-check_recursion
other/analysis/run-clang
other/analysis/run-clang-analyze
}

travis_script() {
. ".travis/flags-$CC.sh"

add_ld_flag -Wl,-z,defs

# Make compilation error on a warning
add_flag -Werror

# Coverage flags.
add_flag -fprofile-arcs -ftest-coverage

"$ASTYLE" --version
other/astyle/format-source . "$ASTYLE"
sudo apt-get install -y --no-install-recommends libopus-dev libsodium-dev libvpx-dev ninja-build

echo "Running TokTok style checker"
"$HOME/.local/bin/check-cimple"
. ".travis/flags-$CC.sh"

# Use () to run in a separate process so the exports are local.
(run_static_analysis)
add_ld_flag -Wl,-z,defs

other/analysis/check_logger_levels
# Make compilation error on a warning
add_flag -Werror

cmake -B_build -H. -GNinja \
-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="$PWD/_install" \
-DMIN_LOGGER_LEVEL=TRACE \
-DMUST_BUILD_TOXAV=ON \
-DNON_HERMETIC_TESTS=ON \
-DSTRICT_ABI=ON \
-DTEST_TIMEOUT_SECONDS=120 \
-DUSE_IPV6=OFF \
-DAUTOTEST=ON
# Coverage flags.
add_flag -fprofile-arcs -ftest-coverage

cmake --build _build --parallel "$NPROC" --target install -- -k 0
cmake -B_build -H. -GNinja \
-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="$PWD/_install" \
-DMIN_LOGGER_LEVEL=TRACE \
-DMUST_BUILD_TOXAV=ON \
-DNON_HERMETIC_TESTS=OFF \
-DSTRICT_ABI=ON \
-DTEST_TIMEOUT_SECONDS=120 \
-DUSE_IPV6=OFF \
-DAUTOTEST=ON

cd _build # pushd
ctest -j50 --output-on-failure ||
ctest -j50 --output-on-failure --rerun-failed
cd - # popd
}
cmake --build _build --parallel "$NPROC" --target install -- -k 0

if [ "-z" "$ACTION" ]; then
"travis_script"
else
"travis_$ACTION"
fi
cd _build # pushd
ctest -j50 --output-on-failure ||
ctest -j50 --output-on-failure --rerun-failed
cd - # popd
0