mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-24 21:45:30 +00:00
7c3be23429
Also, allow trace logging in bootstrapd (disabled by default, but enabled on the websockify docker image so we can debug things there).
12 lines
347 B
Bash
Executable File
12 lines
347 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
read -a ci_env <<<"$(bash <(curl -s https://codecov.io/env))"
|
|
|
|
BUILD=coverage
|
|
other/docker/sources/build.sh
|
|
docker build -t "toxchat/c-toxcore:$BUILD" -f "other/docker/$BUILD/$BUILD.Dockerfile" .
|
|
|
|
docker run "${ci_env[@]}" -e CI=true --name toxcore-coverage --rm -t toxchat/c-toxcore:coverage /usr/local/bin/codecov
|