Files
boost-ci/ci/travis/codecov.sh
Alexander Grund 605750ac4f Ensure enforce.sh doesn't use unset variables
Test this by using `set -u` in build scripts
2025-03-02 16:09:20 +01:00

19 lines
456 B
Bash
Executable File

#!/bin/bash
#
# Copyright 2017 - 2019 James E. King III
# Copyright 2021 Alexander Grund
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
# Bash script to run in travis to perform codecov.io integration
#
set -eux
CI_DIR="$(dirname "${BASH_SOURCE[0]}")/.."
source "$CI_DIR"/codecov.sh "setup"
"$CI_DIR"/build.sh
"$CI_DIR"/codecov.sh "upload"