Browse Source

Folding in travis

tempestpy_adaptions
Matthias Volk 8 years ago
parent
commit
7a3d9b32ed
  1. 12
      travis/install_osx.sh
  2. 12
      travis/postsubmit-helper.sh

12
travis/install_osx.sh

@ -2,6 +2,12 @@
# Script installing dependencies # Script installing dependencies
# Inspired by https://github.com/google/fruit # Inspired by https://github.com/google/fruit
travis_fold() {
local action=$1
local name=$2
echo -en "travis_fold:${action}:${name}\r"
}
set -e set -e
# Helper for installing packages via homebrew # Helper for installing packages via homebrew
@ -17,8 +23,11 @@ install_brew_package() {
} }
# Update packages # Update packages
travis_fold start brew_update
brew update brew update
travis_fold end brew_update
travis_fold start brew_install_util
# For md5sum # For md5sum
install_brew_package md5sha1sum install_brew_package md5sha1sum
# For `timeout' # For `timeout'
@ -39,9 +48,11 @@ clang-3.9) install_brew_package llvm@3.9 --with-clang --with-libcxx;;
clang-4.0) install_brew_package llvm --with-clang --with-libcxx;; clang-4.0) install_brew_package llvm --with-clang --with-libcxx;;
*) echo "Compiler not supported: ${COMPILER}. See travis_ci_install_osx.sh"; exit 1 ;; *) echo "Compiler not supported: ${COMPILER}. See travis_ci_install_osx.sh"; exit 1 ;;
esac esac
travis_fold end brew_install_util
# Install dependencies # Install dependencies
travis_fold start brew_install_dependencies
install_brew_package gmp --c++11 install_brew_package gmp --c++11
install_brew_package cln install_brew_package cln
install_brew_package ginac install_brew_package ginac
@ -50,3 +61,4 @@ install_brew_package boost --c++11
brew tap homebrew/science brew tap homebrew/science
install_brew_package homebrew/science/glpk install_brew_package homebrew/science/glpk
install_brew_package homebrew/science/hwloc install_brew_package homebrew/science/hwloc
travis_fold end brew_install_dependencies

12
travis/postsubmit-helper.sh

@ -77,9 +77,17 @@ clang-default)
exit 1 exit 1
esac esac
travis_fold() {
local action=$1
local name=$2
echo -en "travis_fold:${action}:${name}\r"
}
run_make() { run_make() {
travis_fold start make
# VERBOSE=1 make storm -j$N_JOBS # VERBOSE=1 make storm -j$N_JOBS
make resources -j$N_JOBS make resources -j$N_JOBS
travis_fold end make
} }
# Build # Build
@ -94,8 +102,11 @@ ReleasePlain) CMAKE_ARGS=(-DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="
esac esac
# Restore timestamps of files # Restore timestamps of files
travis_fold start mtime
ruby travis/mtime_cache/mtime_cache.rb -g travis/mtime_cache/globs.txt -c travis/mtime_cache/cache.json ruby travis/mtime_cache/mtime_cache.rb -g travis/mtime_cache/globs.txt -c travis/mtime_cache/cache.json
travis_fold end mtime
travis_fold start cmake
#rm -rf build #rm -rf build
mkdir -p build mkdir -p build
cd build cd build
@ -107,4 +118,5 @@ then
cat CMakeFiles/CMakeError.log cat CMakeFiles/CMakeError.log
fi fi
echo echo
travis_fold end cmake
run_make run_make
Loading…
Cancel
Save