123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #!/bin/bash
- source .travis/header.sh
- set -e
- subtitle "*** Updating Cabal tools ***"
- travis_retry cabal update
- subtitle "*** Installing Alex, Happy, and shelltestrunner ***"
- travis_retry cabal fetch alex happy shelltestrunner
- cabal install -v0 alex happy
- cabal install -v0 --ghc-option=-w shelltestrunner
- ##############################################################################
- # Build environment information
- travis_fold start "ghc.info"
- title "GHC build information"
- subtitle "*** GHC version ***"
- ghc --version
- subtitle "*** Cabal version ***"
- cabal --version
- subtitle "*** Alex version ***"
- alex --version
- subtitle "*** Happy version ***"
- happy --version | sed 2q
- subtitle "*** Haddock version ***"
- haddock --version
- subtitle "*** Emacs version ***"
- emacs --version | sed 2q
- # The container environment reports a wrong number of cores. We use
- # a `sed` script (from https://github.com/hvr/multi-ghc-travis) for
- # commenting out `jobs: $ncpus` in the Cabal configuration file.
- sed -i 's/^jobs:/-- jobs:/' $HOME/.cabal/config
- subtitle "*** Cabal configuration ***"
- cat $HOME/.cabal/config
- travis_fold end "ghc.info"
- ##############################################################################
- # Installing the dependencies
- # N.B. `cabal install` doesn't set up the number of jobs by default
- # (cabal-install 1.22.4.0). See https://github.com/haskell/cabal/issues/2628.
- # We are using `make CABAL_OPTS...` because we are including the
- # options to `cabal install` set up in the `Makefile`.
- travis_fold start "build.dependencies"
- title "Building dependencies"
- # travis_retry cabal fetch `cabal install --dependencies-only --enable-tests --dry-run | sed 1,2d | sed "s|(latest[^)]*)||g"`
- travis_retry make CABAL_OPTS='-v0 --only-dependencies' install-bin
- travis_fold end "build.dependencies"
- ##############################################################################
- # Installing Agda
- travis_fold start "build.agda"
- title "Building Agda"
- # We need to install without -foptimize-aggressively on GHC 9.0.1.
- if [[ $GHC_VER == "9.0.1" ]]; then
- make BUILD_DIR=$BUILD_DIR CABAL_OPTS=-v1 v1-install
- else
- make BUILD_DIR=$BUILD_DIR CABAL_OPTS=-v1 install-bin
- fi
- travis_fold end "build.agda"
- ##############################################################################
- # Getting the standard library
- travis_fold start "fetch.std-lib"
- title "Fetching the standard library"
- make up-to-date-std-lib
- travis_fold end "fetch.std-lib"
- ##############################################################################
- # Getting the cubical library
- travis_fold start "fetch.cubical"
- title "Fetching the cubical library"
- make up-to-date-cubical
- travis_fold end "fetch.cubical"
- ###############################################################################
- ## Installing a recent version of Node (see Issue #2192)
- #
- #cd $HOME
- #travis_retry wget https://nodejs.org/download/release/${NODE_VERSION}/${NODE_TARBALL}
- #tar xJf ${NODE_TARBALL}
- #cd $AGDA_HOME
- #echo "*** Node version ***"
- #node --version
|