blob: 1b442ddbe860b1f69d1ee275674e38b427813218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
set -e
# coveralls falsely reports .c-files in the build directories as having 100% coverage so we exclude them
coveralls --extension .c --exclude build_autoconf --exclude build_cmake
echo "$TRAVIS_SECURE_ENV_VARS"
./travis/build_docs.sh
if test "$TRAVIS_SECURE_ENV_VARS" = "true" -a "$TRAVIS_BRANCH" = "master"; then
echo "publish website";
./travis/add_deploy_key.sh;
./travis/deploy_website.sh $TRAVIS_BUILD_DIR/docs/build /tmp;
# Disabled: see discussion of https://github.com/OSGeo/proj.4/pull/1035
# if test "$BUILD_NAME" = "linux_gcc"; then
# ./scripts/gen_html_coverage.sh
# ./travis/deploy_html_coverage.sh
# fi
fi
|