tracks/haskell/.travis.yml in trackler-2.2.1.119 vs tracks/haskell/.travis.yml in trackler-2.2.1.120
- old
+ new
@@ -10,11 +10,11 @@
directories:
- $HOME/.stack # Global stack's cache.
- $HOME/.foldercache # Per exercise `.stack-work` cache.
env:
- - RESOLVER="lts-10.2" CURRENT="YES" # Equal to each stack.yaml.
+ - RESOLVER="lts-11.1" CURRENT="YES" # Equal to each stack.yaml.
- RESOLVER="nightly" # Latest nightly snapshot.
matrix:
allow_failures: # The snapshot `nightly` is just an alias to
- env: RESOLVER="nightly" # the newest version released. We don't want
@@ -59,8 +59,8 @@
if [ "${CURRENT}" != "YES" ]; then
export SET_RESOLVER="--resolver ${RESOLVER}"
fi
for exercise in ${TRAVIS_BUILD_DIR}/exercises/*/ ; do
- bin/test-stub $exercise
- bin/test-all-examples $exercise
+ time bin/test-stub $exercise
+ time bin/test-all-examples $exercise
done