mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
cf8afcc411
Solution: switch to Github Actions Travis recently started enforcing credits for OSS projects without any funding. While it is possible to get free credits, it is a manual step that involves contacting customer support via email and asking to add them, every week. While this does not require money, it requires something far scarcer: volunteers time. Drop Travis and migrate to Github Actions.
15 lines
378 B
Bash
Executable File
15 lines
378 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
mkdir tmp
|
|
BUILD_PREFIX=$PWD/tmp
|
|
|
|
source ../../config.sh
|
|
set_config_opts
|
|
|
|
CONFIG_OPTS+=("--enable-code-coverage")
|
|
|
|
# Build, check, and install from local source
|
|
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make VERBOSE=1 -j5 check-code-coverage CODE_COVERAGE_OUTPUT_FILE=lcov.info CODE_COVERAGE_OUTPUT_DIRECTORY=coverage) || exit 1
|